Skip to content

Instantly share code, notes, and snippets.

@IgorHalfeld
Created February 24, 2020 01:05
Show Gist options
  • Save IgorHalfeld/c432950447684ae2382aab6cf1e8e90b to your computer and use it in GitHub Desktop.
Save IgorHalfeld/c432950447684ae2382aab6cf1e8e90b to your computer and use it in GitHub Desktop.
export const curry = fn => (...args) => {
if (args.length >= fn.length) {
fn.apply(null, args)
return
}
curry(fn.bind(null, ...args))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment