番长猴子2020-03-24
我正在使用ya-csv库,它希望将文件或流作为输入,但是我有一个字符串。
如何将该字符串转换为Node中的流?
另一种解决方案是将read函数传递给Readable的构造函数(参见doc 流readeable选项)
var s = new Readable({read(size) { this.push("your string here") this.push(null) }});
您可以使用s.pipe为例
Newest Answer
另一种解决方案是将read函数传递给Readable的构造函数(参见doc 流readeable选项)
您可以使用s.pipe为例