Skip to content
View moitorrijos's full-sized avatar
🤓
Working
🤓
Working
Block or Report

Block or report moitorrijos

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. A quadratic equation solver in JS A quadratic equation solver in JS
    1
    var quadEquationSolver = function (a, b, c) {
    2
      var rootPart = Math.sqrt( (b * b) - (4 * a * c) );
    3
      var denom = 2 * a;
    4
      
    5
      var firstRoot = (-b + rootPart)/denom;
  2. A function to convert any string to ... A function to convert any string to title case including non capitalizing words in english and spanish
    1
    function toTitleCase(str: string | undefined | null) {
    2
      if (!str) return "";
    3
      const nonCapitalizedWords = ["a", "an", "the", "and", "but", "or", "nor", "for", "yet", "so", "as", "at", "by", "for", "in", "of", "on", "per", "to", "with"];
    4
      const nonCapitalizedWordsSpanish = ["un", "una", "unos", "unas", "el", "la", "los", "las", "y", "pero", "o", "ni", "por", "aún", "así", "como", "en", "por", "para", "de", "del", "al", "con"];
    5
    
                  
  3. temporizador temporizador Public

    Un temporizador de cuenta regresiva para múltiples usos.

    JavaScript

  4. react-redux-ts-todo-app react-redux-ts-todo-app Public

    Todo App built with React, Redux and TypeScript

    TypeScript

  5. kentcdods-react-fundamentals kentcdods-react-fundamentals Public

    JavaScript 2

  6. A function that renames all keys in ... A function that renames all keys in an object
    1
    const persons = [
    2
      {
    3
        name: 'Juan Perez',
    4
        nationality: 'Panamanian',
    5
        country_of_birth: 'Panama',