mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-22 18:08:51 +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));
|
|
}
|