Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80559 views
1
var through = require('through2');
2
3
module.exports = function (file) {
4
return through(function (buf, enc, next) {
5
this.push(String(buf).replace(/AAA/g, '5'));
6
next();
7
});
8
};
9
10