test-action-debian-package/node_modules/ramda/es/internal/_pipe.js

5 lines
118 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
export default function _pipe(f, g) {
return function () {
return g.call(this, f.apply(this, arguments));
};
}