kiss-promise-pool
v0.0.2
Published
Keep it Simple, Promise Pool
Readme
KISS Promise Pool
When there is multiple async tasks to run. R
return await PromisePool.toArray(
2, // Number of concurrent tasks
[1,2,3,4,5,6,7], // Source data
async n => {
// do something async with n
}
) 