Skip to content

Instantly share code, notes, and snippets.

@danrspencer
Created June 5, 2017 09:28
Show Gist options
  • Save danrspencer/a81fd5702d7d565c470b1566453f71a7 to your computer and use it in GitHub Desktop.
Save danrspencer/a81fd5702d7d565c470b1566453f71a7 to your computer and use it in GitHub Desktop.
Chicken Korma
function curry(func, ...args) {
return (...moreArgs) => func(...args, ...moreArgs);
}
const target = (a, b, c, d, e) => a+b+c+d+e;
const abTarget = curry(target, "a", "b");
const abcdTarget = curry(abTarget, "c", "d");
abcdTarget("e");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment