1.0.1 • Published 4 years ago

@alexsergey/async-loop v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

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
})