Skip to content

Instantly share code, notes, and snippets.

@tuxsudo
Created August 18, 2016 14:11
Show Gist options
  • Select an option

  • Save tuxsudo/1a1b31d9e29466df9e5418d8236d9dc9 to your computer and use it in GitHub Desktop.

Select an option

Save tuxsudo/1a1b31d9e29466df9e5418d8236d9dc9 to your computer and use it in GitHub Desktop.
Compose & Pipe
const compose = (...fns) => (
(x) => fns.reduceRight( (val, fn) => fn( val ), x )
);
export default compose;
const pipe = (...fns) => (
(x) => fns.reduce( (val, fn) => fn( val ), x )
);
export default pipe;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment