refactor: init cypress-cucumber-preprocessor install.
This commit is contained in:
11
node_modules/browserify/test/tr_order/replace_bbb.js
generated
vendored
Normal file
11
node_modules/browserify/test/tr_order/replace_bbb.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
var through = require('through2');
|
||||
|
||||
module.exports = function(file) {
|
||||
return through(function (buf, enc, next) {
|
||||
this.push(String(buf)
|
||||
.replace(/AAA/g, '6')
|
||||
.replace(/BBB/g, '50')
|
||||
);
|
||||
next();
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user