mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-23 10:28:09 +00:00
4 lines
101 B
TypeScript
4 lines
101 B
TypeScript
|
export function pMap<T, U>(arr: T[], fn: (t: T) => Promise<U>) {
|
||
|
return Promise.all(arr.map(fn));
|
||
|
}
|