2636. Promise Pool ¶ TypeScript 1 2 3 4 5 6type F = () => Promise<any>; function promisePool(functions: F[], n: number): Promise<any> { const next = () => functions[n++]?.().then(next); return Promise.all(functions.slice(0, n).map((f) => f().then(next))); } Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.