action-debian-package/node_modules/ramda/es/internal/_pipe.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

5 lines
118 B
JavaScript

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