2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-22 18:08:51 +00:00
the-guard-bot/utils/promise.ts
Wojciech Pawlik c93f27bcf6
Avoid forEach
2020-05-13 22:00:49 +02:00

4 lines
101 B
TypeScript

export function pMap<T, U>(arr: T[], fn: (t: T) => Promise<U>) {
return Promise.all(arr.map(fn));
}