$ cnpm install pull-stream-to-async-iterator
Convert a pull stream to an async iterator
npm install pull-stream-to-async-iterator
const toIterator = require('pull-stream-to-async-iterator')
const source = pull(
pull.values([1, 2, 3, 4, 5]),
pull.asyncMap((value, cb) => setTimeout(() => cb(null, value)))
)
const iterator = toIterator(source)
for await (const value of iterator) {
console.log(value)
}
toIterator(source)Convert a source pull stream into an async iterator. Returns an async iterator that can be used in a for/await/of loop.
Feel free to dive in! Open an issue or submit PRs.
MIT © Alan Shaw
Copyright 2013 - present © cnpmjs.org | Home |