UNPKG

128 BJavaScriptView Raw
1function _pipe(f, g) {
2 return function () {
3 return g.call(this, f.apply(this, arguments));
4 };
5}
6
7module.exports = _pipe;
\No newline at end of file