Files
JiboSDK/node_modules/module-deps/test/files/tr_module/index.js

9 lines
200 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
var through = require('through2');
module.exports = function (file) {
return through(function (buf, enc, next) {
this.push(String(buf).replace(/XXX/g, '123'));
next();
});
};