init
This commit is contained in:
5
node_modules/ramda/es/internal/_pipe.js
generated
vendored
Normal file
5
node_modules/ramda/es/internal/_pipe.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function _pipe(f, g) {
|
||||
return function () {
|
||||
return g.call(this, f.apply(this, arguments));
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user