UNPKG

191 BJavaScriptView Raw
1function _pipeP(f, g) {
2 return function () {
3 var ctx = this;
4 return f.apply(ctx, arguments).then(function (x) {
5 return g.call(ctx, x);
6 });
7 };
8}
9
10module.exports = _pipeP;
\No newline at end of file