Skip to content

Instantly share code, notes, and snippets.

@sirpengi
Created February 12, 2015 21:42
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 sirpengi/c1d65c4be18d136a88b4 to your computer and use it in GitHub Desktop.
Save sirpengi/c1d65c4be18d136a88b4 to your computer and use it in GitHub Desktop.
what is this
var evaluate = function(f) {
var args = copyArgs(arguments, 1)
if (_.isFunction(f)) {
return f.apply(f, args);
}
return f
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment