source: trip-planner-front/node_modules/rxjs/_esm2015/internal/util/pipe.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 390 bytes
Line 
1import { identity } from './identity';
2export function pipe(...fns) {
3 return pipeFromArray(fns);
4}
5export function pipeFromArray(fns) {
6 if (fns.length === 0) {
7 return identity;
8 }
9 if (fns.length === 1) {
10 return fns[0];
11 }
12 return function piped(input) {
13 return fns.reduce((prev, fn) => fn(prev), input);
14 };
15}
16//# sourceMappingURL=pipe.js.map
Note: See TracBrowser for help on using the repository browser.