Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 8, 2020 16:22
Show Gist options
  • Save perjo927/811dc956e35e4fbe716c58d920ebec69 to your computer and use it in GitHub Desktop.
Save perjo927/811dc956e35e4fbe716c58d920ebec69 to your computer and use it in GitHub Desktop.
Compose
export const compose = (...functions) => (argToComposedFunction) =>
functions.reduceRight(
(accumulatedValue, func) => func(accumulatedValue),
argToComposedFunction
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment