This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/_esm2015/internal/util/pipe.js
2019-08-11 20:48:02 +02:00

16 lines
No EOL
366 B
JavaScript

import { noop } from './noop';
export function pipe(...fns) {
return pipeFromArray(fns);
}
export function pipeFromArray(fns) {
if (!fns) {
return noop;
}
if (fns.length === 1) {
return fns[0];
}
return function piped(input) {
return fns.reduce((prev, fn) => fn(prev), input);
};
}
//# sourceMappingURL=pipe.js.map