action-debian-package/node_modules/ramda/es/internal/_pipeP.js

8 lines
180 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
export default function _pipeP(f, g) {
return function () {
var ctx = this;
return f.apply(ctx, arguments).then(function (x) {
return g.call(ctx, x);
});
};
}