文件名称:stream-each:迭代流中的所有数据
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-17 08:06:57
JavaScript
流每个 迭代流中的所有数据 npm install stream-each 用法 var each = require ( 'stream-each' ) each ( stream , function ( data , next ) { console . log ( 'data from stream' , data ) // when ready to consume next chunk next ( ) } , function ( err ) { console . log ( 'no more data' ) } ) 原料药 each(stream, iterator, cb) 通过使用(data, next)调用iterator函数来迭代流中的(data, next)其中data是数据块,next是回调。 准备消耗下一个块时,请调用next。 (可选)您
【文件预览】:
stream-each-master
----.gitignore(13B)
----package.json(691B)
----collaborators.md(352B)
----.travis.yml(62B)
----LICENSE(1KB)
----index.js(1KB)
----test.js(2KB)
----README.md(1012B)