action-debian-package/node_modules/ramda/es/internal/_pipeP.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

8 lines
180 B
JavaScript

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