Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@rsp
Last active November 29, 2017 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsp/d2c88e304a40805ef247c0cd5ac1e065 to your computer and use it in GitHub Desktop.
Save rsp/d2c88e304a40805ef247c0cd5ac1e065 to your computer and use it in GitHub Desktop.
inFullMobile Language Wars: Round 1 - Old JavaScript Solution 3 by @rsp - See: https://gist.github.com/rsp/d8bdbafa09f24f99eebc8ed60fe205c8
function f(a) {
return function (b) {
return function (c) {
return a(function (d) {
return function (e) {
return e(d(b));
};
})(function (f) {
return c;
})(function (g) {
return g;
});
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment