Skip to content

Instantly share code, notes, and snippets.

@chee
Created November 7, 2018 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chee/ac0383904900f7b1926f84ee3148e4d7 to your computer and use it in GitHub Desktop.
Save chee/ac0383904900f7b1926f84ee3148e4d7 to your computer and use it in GitHub Desktop.
export default (...functions) => (...args) =>
functions
.slice(0, -1)
.reduceRight(
(result, fn) => fn(result),
functions[functions.length - 1](...args)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment