Skip to content
View johnboy5358's full-sized avatar

Block or report johnboy5358

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. Functional combinators in JavaScript Functional combinators in JavaScript
    1
    var u = (function() {
    2
      var id        = function(x) { return x; }
    3
        , single    = function(x) { return [x]; }
    4
        , constant  = function(x) { return function() { return x; }}
    5
        , $         = function(f, x) { return f(x); };
  2. Common combinators in JavaScript Common combinators in JavaScript
    1
    const I = x => x;
    2
    const K = x => y => x;
    3
    const A = f => x => f(x);
    4
    const T = x => f => f(x);
    5
    const W = f => x => f(x)(x);
  3. classroom-coding classroom-coding Public

    Forked from DrBoolean/classroom-coding

    Video series code

    JavaScript

  4. composable-functional-javascript composable-functional-javascript Public

    Forked from hauntedhost/composable-functional-javascript

    Composable Functional JavaScript by Professor Frisby

    JavaScript

  5. fantasy-land fantasy-land Public

    Forked from fantasyland/fantasy-land

    Specification for interoperability of common algebraic structures in JavaScript

    JavaScript

  6. mostly-adequate-guide mostly-adequate-guide Public

    Forked from MostlyAdequate/mostly-adequate-guide

    Mostly adequate guide to FP (in javascript)

    JavaScript