Skip to content

Instantly share code, notes, and snippets.

@ufocoder
Created April 22, 2018 23:46
Show Gist options
  • Save ufocoder/c2adf4f90499e4de2b337c343469a253 to your computer and use it in GitHub Desktop.
Save ufocoder/c2adf4f90499e4de2b337c343469a253 to your computer and use it in GitHub Desktop.
const curry = (
f, arr = []
) => (...args) => (
a => a.length === f.length ?
f(...a) :
curry(f, a)
)([...arr, ...args]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment