Skip to content
View bever1337's full-sized avatar

Block or report bever1337

Report abuse

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

Report abuse

Pinned Loading

  1. A little glue to support named expor... A little glue to support named exports with React.lazy
    1
    // Returns all named exports as though they were dynamic default exports
    2
    // https://reactjs.org/docs/code-splitting.html#named-exports
    3
    
                  
    4
    import { lazy } from 'react';
    5
    
                  
  2. A request router for browser and edg... A request router for browser and edge environments
    1
    # Request Response Router
    2
    
                  
    3
    ## API
    4
    
                  
    5
    ### Router
  3. Simple caching in workers and the br... Simple caching in workers and the browser
    1
    /**
    2
     * @module
    3
     * Window and worker friendly fetch caching
    4
     */
    5
    
                  
  4. Teeny-Weeny Iterable Finite State Ma... Teeny-Weeny Iterable Finite State Machine
    1
    /**
    2
     * @template StateKey - Any value used to index a Map of Q
    3
     * @template Transition - Any value used to index a Map of Transitions and an undefined value is an epsilon acceptor. Non-epsilon transitions are attempted first
    4
     * @param {Map<StateKey & any, Map<Transition | undefined, ((transition?: any & StateKey) => StateKey)>>} Q - Where q0 is first q in Q, and final states are q in Q with empty transitions
    5
     * @returns {Iterable<StateKey>} - Iterable machine where `machine.next(transition)` steps machine and returns next q.