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.

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. Functional combinators in JavaScriptFunctional combinators in JavaScript
    1
    varu=(function(){
    2
    varid=function(x){returnx;}
    3
    ,single=function(x){return[x];}
    4
    ,constant=function(x){returnfunction(){returnx;}}
    5
    ,$=function(f,x){returnf(x);};
  2. Common combinators in JavaScriptCommon combinators in JavaScript
    1
    constI=x=>x;
    2
    constK=x=>y=>x;
    3
    constA=f=>x=>f(x);
    4
    constT=x=>f=>f(x);
    5
    constW=f=>x=>f(x)(x);
  3. classroom-codingclassroom-codingPublic

    Forked from DrBoolean/classroom-coding

    Video series code

    JavaScript

  4. composable-functional-javascriptcomposable-functional-javascriptPublic

    Forked from hauntedhost/composable-functional-javascript

    Composable Functional JavaScript by Professor Frisby

    JavaScript

  5. fantasy-landfantasy-landPublic

    Forked from fantasyland/fantasy-land

    Specification for interoperability of common algebraic structures in JavaScript

    JavaScript

  6. mostly-adequate-guidemostly-adequate-guidePublic

    Forked from MostlyAdequate/mostly-adequate-guide

    Mostly adequate guide to FP (in javascript)

    JavaScript