blob: 3e2a9d60ec72cb7e6a4ae34d6e0d0d49b5cb9844 [file] [log] [blame]
function _pipeP(f, g) {
return function () {
var ctx = this;
return f.apply(ctx, arguments).then(function (x) {
return g.call(ctx, x);
});
};
}
module.exports = _pipeP;