Skip to content

Instantly share code, notes, and snippets.

@buzzdecafe
Last active August 29, 2015 14:07
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 buzzdecafe/2f6b3af158e88d016ec3 to your computer and use it in GitHub Desktop.
Save buzzdecafe/2f6b3af158e88d016ec3 to your computer and use it in GitHub Desktop.
function lazy(f) {
return function () {
var self = this, args = arguments;
return function () {
var data = f.apply(self, args);
return typeof data === "function" ?
data.apply(this, arguments) : data;
};
};
}
function evaluate(thunk) {
return typeof thunk === "function" ? thunk() : thunk;
}
function add(a) {
return function(b) {
return a + b;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment