Skip to content

Instantly share code, notes, and snippets.

@janczizikow
Created July 9, 2019 21:59
Show Gist options
  • Select an option

  • Save janczizikow/f8b6b28123ec9ac89366a641785c585d to your computer and use it in GitHub Desktop.

Select an option

Save janczizikow/f8b6b28123ec9ac89366a641785c585d 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