Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/55c94cf2034916bb799de64a286b11a7 to your computer and use it in GitHub Desktop.
Save manekinekko/55c94cf2034916bb799de64a286b11a7 to your computer and use it in GitHub Desktop.
function curry() {
const [fn, ...restArgs] = Array.from(arguments);
return function() {
const args = Array.from(arguments);
return fn.apply(null, args.concat(restArgs));
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment