Skip to content
View RMiguelRivero's full-sized avatar

Block or report RMiguelRivero

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. fp-snake fp-snake Public

    JavaScript 1

  2. Flatten function Flatten function
    1
    // Continuation Passing Style
    2
    function flatten([first, ...rest], cont = (x) => x) {
    3
        if (rest.length === 0) {
    4
          return cont(Array.isArray(first) ? flatten(first) : : first ? [first] : []);
    5
        }
  3. Least Recently Used Cache Least Recently Used Cache
    1
    function LRUcache(size) {
    2
        const cache = new Map();
    3
    
                  
    4
        function get(key) {
    5
            let value = -1;
  4. learning-jamstack-one learning-jamstack-one Public

    Simple site listing my Github repositories

    JavaScript

  5. todo-react todo-react Public

    JavaScript

  6. todo-vue todo-vue Public

    JavaScript