🌳
pt0/sharedF/moDashF/promF/allPromCallsF.mts
1import * as _ from 'lodash-es'
3export const allPromCalls = async <T, R>(data: T[], fnc: (item: T) => Promise<R>): Promise<R[]> => {
4 return await Promise.all(_.map(data, fnc))
5}