_pipe.js 118 B

12345
  1. export default function _pipe(f, g) {
  2. return function () {
  3. return g.call(this, f.apply(this, arguments));
  4. };
  5. }