D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cpanel
/
ea-nodejs10
/
lib
/
node_modules
/
npm
/
node_modules
/
stream-iterate
/
Filename :
README.md
back
Copy
# stream-iterate Iterate through the values in a stream. ``` npm install stream-iterate ``` [](http://travis-ci.org/mafintosh/stream-iterate) ## Usage ``` js var iterate = require('stream-iterate') var from = require('from2') var stream = from.obj(['a', 'b', 'c']) var read = iterate(stream) loop() // recursively iterates through each item in the stream function loop () { read(function (err, data, next) { console.log(err, data) next() loop() }) } ``` If you don't call `next` and call `read` again the same `(err, value)` pair will be returned. You can use this module to implement stuff like [a streaming merge sort](https://github.com/mafintosh/stream-iterate/blob/master/test.js#L5-L47). ## License [MIT](LICENSE)
Name
Size
Last Modified
Owner
Permissions
Actions
node_modules
Dir
September 13 2023 2:48:05
root
0755
.npmignore
0.013
KB
September 13 2023 2:48:05
root
0644
.travis.yml
0.059
KB
September 13 2023 2:48:05
root
0644
LICENSE
1.054
KB
September 13 2023 2:48:05
root
0644
README.md
0.814
KB
September 13 2023 2:48:05
root
0644
index.js
1.329
KB
September 13 2023 2:48:05
root
0644
package.json
1.485
KB
September 13 2023 2:48:05
root
0644
test.js
1.202
KB
September 13 2023 2:48:05
root
0644
2017 © D7net | D704T team