UNPKG

typedash

Version:

modern, type-safe collection of utility functions

10 lines (8 loc) 246 B
'use strict'; // src/functions/pipe/pipe.ts function pipe(o1, ...operations) { return (...argsP) => operations.reduce((acc, f) => f(acc), o1(...argsP)); } exports.pipe = pipe; //# sourceMappingURL=out.js.map //# sourceMappingURL=index.cjs.map