2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-23 10:28:09 +00:00
the-guard-bot/utils/promise.ts

4 lines
101 B
TypeScript
Raw Normal View History

2020-05-13 22:00:49 +02:00
export function pMap<T, U>(arr: T[], fn: (t: T) => Promise<U>) {
return Promise.all(arr.map(fn));
}