Skip to content

Instantly share code, notes, and snippets.

@danielpetrov
Created January 10, 2017 09:38
Show Gist options
  • Save danielpetrov/fa0e8643e29641219a82322c186992da to your computer and use it in GitHub Desktop.
Save danielpetrov/fa0e8643e29641219a82322c186992da to your computer and use it in GitHub Desktop.
const compose = () => {
const fns = arguments
return result => {
for (var i = fns.length - 1; i > -1; i--) {
result = fns[i].call(this, result)
}
return result
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment