refactor(Cypress): Moved Cypress to the main folder of the project, as I don't need a sub project for now.
This commit is contained in:
8
node_modules/ramda/es/internal/_pipeP.js
generated
vendored
Normal file
8
node_modules/ramda/es/internal/_pipeP.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function _pipeP(f, g) {
|
||||
return function () {
|
||||
var ctx = this;
|
||||
return f.apply(ctx, arguments).then(function (x) {
|
||||
return g.call(ctx, x);
|
||||
});
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user