fantasy-combinators
fantasy-combinators copied to clipboard
publish 0.0.2
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.