我正在尝试使用through2
. 我有一个流是 index.html 文件,我正在尝试逐行修改 index.html 内容,并-------
在每一行上添加一个。我有:
indexHTML
.pipe(through2.obj(function(obj, enc, next) {
blah = obj.contents.toString().split('\n');
blah.forEach(function(element) {
this.push("-------");
this.push(element):
});
next();
})).pipe(process.stdout);
我目前遇到的问题在数组方法this.push()
中不可用。blah.forEach()
关于如何实现修改 index.html 流的任何建议?