Skip to content

Instantly share code, notes, and snippets.

@fonzerelly
Last active August 29, 2015 13:56
Show Gist options
  • Save fonzerelly/8794719 to your computer and use it in GitHub Desktop.
Save fonzerelly/8794719 to your computer and use it in GitHub Desktop.
_.constant usage
var complexPredicate = function (a, b, c) {
...
};
//a, b, c are available in aVal, bVal, cVal
var precalculatedPredicate = _constant(
complexPredicate(
aVal,
bVal,
cVal
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment