Files
infocom-systems-design/node_modules/ramda/es/internal/_pipeP.js
2025-10-03 22:27:28 +03:00

8 lines
180 B
JavaScript
Executable File

export default function _pipeP(f, g) {
return function () {
var ctx = this;
return f.apply(ctx, arguments).then(function (x) {
return g.call(ctx, x);
});
};
}