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