Skip to content

Instantly share code, notes, and snippets.

@stevewadsworth
Created April 20, 2017 19:12
Show Gist options
  • Select an option

  • Save stevewadsworth/81fa2a6f27adf069ea9933454ffddd4a to your computer and use it in GitHub Desktop.

Select an option

Save stevewadsworth/81fa2a6f27adf069ea9933454ffddd4a to your computer and use it in GitHub Desktop.
Curry
const curryFn = function(fn, ...args) {
return function(...args2) {
return fn.apply(this, args.concat(args2));
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment