Skip to content

Instantly share code, notes, and snippets.

@chee
Created May 3, 2017 20:45
Show Gist options
  • Select an option

  • Save chee/9dfbcd473b32ea717702f4a4b4e75001 to your computer and use it in GitHub Desktop.

Select an option

Save chee/9dfbcd473b32ea717702f4a4b4e75001 to your computer and use it in GitHub Desktop.
curry
function curry(fn) {
return function curried(...args) {
if (args.length >= fn.length) {
return fn(...args)
} else {
return (...nextArgs) => curried(...args, ...nextArgs)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment