blob: e46f8c5b8133ec1530a3c4b6a2f843965dd789e4 [file] [log] [blame]
function _pipe(f, g) {
return function () {
return g.call(this, f.apply(this, arguments));
};
}
module.exports = _pipe;