@alexsergey/async-loop
v1.0.1
Published
Async loop and inverse async loop
Downloads
21
Maintainers
Readme
Async Loop
Async loop and inverse async loop
import { asyncLoop, inverseAsyncLoop } from '@alexsergey/async-loop';
asyncLoop(items, (item, loop) => {
//.. async logic
loop.iteration() // return index of array iteration
loop.next() // next iteration
loop.break() // cancel loop
}, () => {
// it calls after all iterations
})