Skip to content
View bruno-vinicius's full-sized avatar
  • Senior Front-end @ Loadsmart
  • Brazil

Block or report bruno-vinicius

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 Loading

  1. books books Public

    Exercises

  2. code-kata code-kata Public

    Some Code Katas

    JavaScript

  3. course-code-snnipets course-code-snnipets Public

    Code snippets from some courses i take

    JavaScript

  4. mostly-adequate-guide-pt-BR mostly-adequate-guide-pt-BR Public

    Forked from MostlyAdequate/mostly-adequate-guide-pt-BR

    Mostly adequate guide to FP (in javascript, translated in portuguese)

    JavaScript

  5. pareto.js pareto.js Public

    Forked from concretesolutions/pareto.js

    A light-weight utility library that follows the 80/20 principle.

    JavaScript

  6. spread utils spread utils
    1
    const addCounter = (list) => {
    2
      // return list.concat([0]); // old way
    3
      return [...list, 0]; // ES6 way
    4
    };
    5