UNPKG

p-all-limit

Version:

```ts import { promiseAllLimit } from 'p-all-limit'

4 lines (2 loc) 147 B
declare const promiseAllLimit: <T>(array: any[], iterator: (item: any) => Promise<T>, limit: number) => Promise<T[]>; export { promiseAllLimit };