我正在使用ya-csv库,它希望将文件或流作为输入,但是我有一个字符串。
如何将该字符串转换为Node中的流?
从节点12.3开始,stream.Readable有一个from方法可以轻松地从任何可迭代对象(包括数组文字)创建流:
from
const { Readable } = require('stream') const readable = Readable.from('input string') readable.on("data", (chunk) => { console.log(chunk) // will be called once with `"input string"` })