Revisions

gist: 178862 Download_button fork
public
Public Clone URL: git://gist.github.com/178862.git
Embed All Files: show embed
ycombinator.js #
1
2
3
4
5
6
7
8
9
var Y = function(f) {
  return (function(g) {
    return g(g);
  })(function(h) {
    return function() {
      return f(h(h)).apply(null, arguments);
    };
  });
};