Skip to content

Instantly share code, notes, and snippets.

@emanon-was
Last active April 17, 2016 06:10
Show Gist options
  • Select an option

  • Save emanon-was/a8d648019e8f736c026c5ecee972077f to your computer and use it in GitHub Desktop.

Select an option

Save emanon-was/a8d648019e8f736c026c5ecee972077f to your computer and use it in GitHub Desktop.
function curry(f) {
if (f.length <= 1) {
return f;
} else {
return function(x) {return curry(f.bind(null,x));};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment