Pinned Loading
-
Functional combinators in JavaScript
Functional combinators in JavaScript 1var u = (function() {
2var 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); };
-
Common combinators in JavaScript
Common combinators in JavaScript 1const I = x => x;
2const K = x => y => x;
3const A = f => x => f(x);
4const T = x => f => f(x);
5const W = f => x => f(x)(x);
-
classroom-coding
classroom-coding PublicForked from DrBoolean/classroom-coding
Video series code
JavaScript
-
composable-functional-javascript
composable-functional-javascript PublicForked from hauntedhost/composable-functional-javascript
Composable Functional JavaScript by Professor Frisby
JavaScript
-
fantasy-land
fantasy-land PublicForked from fantasyland/fantasy-land
Specification for interoperability of common algebraic structures in JavaScript
JavaScript
-
mostly-adequate-guide
mostly-adequate-guide PublicForked from MostlyAdequate/mostly-adequate-guide
Mostly adequate guide to FP (in javascript)
JavaScript
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.