RosettaCodeData/Task/Y-combinator/JavaScript/y-combinator-2.js

10 lines
184 B
JavaScript
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
function Y(f) {
2015-02-20 00:35:01 -05:00
return (function(h) {
return h(h);
2013-04-11 01:07:29 -07:00
})(function(h) {
2015-02-20 00:35:01 -05:00
return f(function() {
return h(h).apply(this, arguments);
});
});
2013-04-11 01:07:29 -07:00
}