abortable-iterator

Make any iterator or iterable abortable via an AbortSignal
The AbortController is used in the fetch API to abort in flight requests from, for example, a timeout or user action. The same concept is used here to halt iteration of an async iterator.
Install
npm install abortable-iterator
Usage
const abortable = require('abortable-iterator')
const AbortController = require('abort-controller')
const asyncCounter = async function * (start, delay) {
let i = start
while (true) {
yield new Promise(resolve => setTimeout(() => resolve(i++), delay))
}
}
const everySecond = asyncCounter(0, 1000)
const controller = new AbortController()
const abortableEverySecond = abortable(everySecond, controller.signal)
setTimeout(() => controller.abort(), 5000)
try {
for await (const n of abortableEverySecond) {
console.log(n)
}
} catch (err) {
if (err.code === 'ERR_ABORTED') {
} else {
throw err
}
}
API
const abortable = require('abortable-iterator')
abortable(iterator, signal, [options])
Make any iterator or iterable abortable via an AbortSignal.
Parameters
| iterator | Iterable|Iterator | The iterator or iterable object to make abortable |
| signal | AbortSignal | Signal obtained from AbortController.signal which is used to abort the iterator. |
| options | Object | (optional) options |
| options.onAbort | Function | An (async) function called when the iterator is being aborted, before the abort error is thrown. Default null |
| options.abortMessage | String | The message that the error will have if the iterator is aborted. Default "The operation was aborted" |
| options.abortCode | String|Number | The value assigned to the code property of the error that is thrown if the iterator is aborted. Default "ABORT_ERR" |
Returns
Iterator | An iterator that wraps the passed iterator parameter that makes it abortable via the passed signal parameter. |
The returned iterator will throw an AbortError when it is aborted that has a type with the value aborted and code property with the value ABORT_ERR by default.
Contribute
Feel free to dive in! Open an issue or submit PRs.
License
MIT © Alan Shaw