Skip to content

Instantly share code, notes, and snippets.

@venil7
Created August 22, 2016 15:19
Show Gist options
  • Save venil7/4182d3fca6561a360ba36c23d9eb2623 to your computer and use it in GitHub Desktop.
Save venil7/4182d3fca6561a360ba36c23d9eb2623 to your computer and use it in GitHub Desktop.
const compose = (...funcs) => {
const noop = (arg) => arg;
return funcs.reduceRight((acc, func) => {
return (arg) => func(acc(arg));
}, noop);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment