Skip to content

Instantly share code, notes, and snippets.

@zerosrat
Last active March 15, 2019 02:32
Show Gist options
  • Save zerosrat/161f283795887105358fbb716f0b6947 to your computer and use it in GitHub Desktop.
Save zerosrat/161f283795887105358fbb716f0b6947 to your computer and use it in GitHub Desktop.
const curry = fn =>
judge = (...args) =>
args.length === fn.length
? fn(...args)
: (arg) => judge(...args, arg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment