Skip to content

Instantly share code, notes, and snippets.

@hw0k
Created June 28, 2020 10:51
Show Gist options
  • Save hw0k/8209ece9c440c67f0158cce401951381 to your computer and use it in GitHub Desktop.
Save hw0k/8209ece9c440c67f0158cce401951381 to your computer and use it in GitHub Desktop.
FND 8
function pipe(...functions) {
return input => functions.reduce((value, func) => func(value), input);
}
function compose(...functions) {
return input => functions.reduceRight((value, func) => func(value), input);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment