_pipeP.js 180 B

12345678
  1. export default function _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. }