Package Exports
- pull-stream-to-async-iterator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pull-stream-to-async-iterator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pull-stream-to-async-iterator
Convert a pull stream to an async iterator
Install
npm install pull-stream-to-async-iterator
Usage
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)
}
API
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.
Contribute
Feel free to dive in! Open an issue or submit PRs.
License
MIT © Alan Shaw