Skip to content

Instantly share code, notes, and snippets.

@VadimBrodsky
Last active August 4, 2016 19:37
Show Gist options
  • Save VadimBrodsky/9160294f154da0666306d66d996abeee to your computer and use it in GitHub Desktop.
Save VadimBrodsky/9160294f154da0666306d66d996abeee to your computer and use it in GitHub Desktop.
Implementing the Curry function in JavaScript for arbitrary number of arguments
function curry(func) {
var slice = Array.prototype.slice,
args = slice.call(arguments, 1);
return function () {
return func.apply(
null,
args.concat(slice.call(arguments, 0))
);
};
}
function curry(func, ...first) {
return function (...second) {
return func(...first, ...second);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment