fantasy-combinators icon indicating copy to clipboard operation
fantasy-combinators copied to clipboard

publish 0.0.2

Open stoeffel opened this issue 10 years ago • 0 comments

The currently published version of fantasy-combinators has a bug:

// S combinator
function substitution(f) {
    return function(g) {
        return function(x) {
-           f(x)(g(x));
+          return f(x)(g(x));
        };
    };
}

Would be cool if we could publish 0.0.2.

stoeffel avatar Feb 17 '16 19:02 stoeffel