Skip to content

Instantly share code, notes, and snippets.

@dewey92
Created March 26, 2017 04:06
Show Gist options
  • Save dewey92/d986e44c9b2d4233f4c8811b57fa6d91 to your computer and use it in GitHub Desktop.
Save dewey92/d986e44c9b2d4233f4c8811b57fa6d91 to your computer and use it in GitHub Desktop.
compose
const compose = (...fns) => x => fns.reduceRight((acc, fn) => fn(acc), x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment