function _pipe(f, g) { return function () { return g.call(this, f.apply(this, arguments)); }; } module.exports = _pipe;