UNPKG

ramda

Version:

A practical functional library for JavaScript programmers.

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