Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created September 6, 2016 00:34
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ericelliott/d797c5b68570a45c3a061672a006b73d to your computer and use it in GitHub Desktop.
Save ericelliott/d797c5b68570a45c3a061672a006b73d to your computer and use it in GitHub Desktop.
Compose implementation
const compose = (...fns) => x => fns.reduceRight((v, f) => f(v), x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment