Skip to content

Instantly share code, notes, and snippets.

@fauxsaurus
Last active October 13, 2018 16:18
Show Gist options
  • Select an option

  • Save fauxsaurus/ac124a022ae87e71f4cf83014500d8fa to your computer and use it in GitHub Desktop.

Select an option

Save fauxsaurus/ac124a022ae87e71f4cf83014500d8fa to your computer and use it in GitHub Desktop.
one line curry function
const curry=(fn,...xs)=>xs.length>=fn.length?fn(...xs):(...ys)=>curry(fn,...xs,...ys)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment