Skip to content

Instantly share code, notes, and snippets.

@alaboudi
Created January 24, 2018 22:05
Show Gist options
  • Save alaboudi/852b9acbed189320bcea2c806904e9e9 to your computer and use it in GitHub Desktop.
Save alaboudi/852b9acbed189320bcea2c806904e9e9 to your computer and use it in GitHub Desktop.
Function to compose other functions
const compose = (...fns) =>
fns.reverse().reduce((prevFn, nextFn) =>
value => nextFn(prevFn(value)),
value => value
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment