about summary refs log tree commit diff stats
path: root/js/pipe.js
blob: ace5fb903cd5dd8ba69f37ed07c03b47c9c2270b (plain) (blame)
1
2
3
4
5
6
const pipe = (...args) => args.reduce((acc, el) => el(acc));

/* alt implementation
const pipe = (...fns) => (initialValue) =>
  fns.reduce((acc, fn) => fn(acc), initialValue);
*/