Files
flights_web_raw/node_modules/ramda/es/internal/_pipe.js
T

5 lines
118 B
JavaScript
Executable File

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