blob: a6247647741cde5703f16d87e335208337dbd922 [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);
});
};
}