The Wayback Machine - https://web.archive.org/web/20201117121446/https://github.com/catmorphic
Skip to content
Avatar
😴
😴

Highlights

Sponsoring

@sindresorhus

Pinned

  1. 1
    class TrieNode {
    2
      constructor(char) {
    3
        this.char = char;
    4
        this.validWord = false;
    5
        this.parent = null;
  2. 1
    const curry = fn => (...args) =>
    2
      args.length >= fn.length ? fn(...args) : curry(fn.bind(undefined, ...args))
    3
    
                  
    4
    const always = a => b => a
    5
    
                  
  3. JavaScript

  4. JavaScript

6 contributions in the last year

Nov Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Mon Wed Fri

Contribution activity

October - November 2020

catmorphic has no activity yet for this period.

September 2020

Created 1 repository
You can’t perform that action at this time.