3 lines
163 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
const combineFunctions = (a, b) => (v) => b(a(v));
export const pipe = (...transformers) => transformers.reduce(combineFunctions);
//# sourceMappingURL=pipe.js.map