server-json/node_modules/ramda/es/internal/_pipe.js
2024-11-01 08:00:42 +00:00

5 lines
No EOL
118 B
JavaScript

export default function _pipe(f, g) {
return function () {
return g.call(this, f.apply(this, arguments));
};
}