Skip to content

Instantly share code, notes, and snippets.

@arturparkhisenko
Forked from ericelliott/pipe.js
Created September 6, 2016 06:31
Show Gist options
  • Save arturparkhisenko/988f1e37d3003f5eab6bb0c8f8faaeff to your computer and use it in GitHub Desktop.
Save arturparkhisenko/988f1e37d3003f5eab6bb0c8f8faaeff to your computer and use it in GitHub Desktop.
Pipe
const pipe = (...fns) => x => fns.reduce((v, f) => f(v), x);
const fn1 = s => s.toLowerCase();
const fn2 = s => s.split('').reverse().join('');
const fn3 = s => s + '!'
const newFunc = pipe(fn1, fn2, fn3);
const result = newFunc('Time'); // emit!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment