blob: 3b79a052a94b6a56922144601df767f1d9efb5fb [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;