Function arrayFlatMapAsync
- arrayFlatMapAsync<T, R>(array, mapper): Promise<R[]>
Parameters
- array: T[]
- mapper: ((value, index, array) => Promise<R[]>)
- (value, index, array): Promise<R[]>
Parameters
- value: T
- index: number
- array: T[]
Returns Promise<R[]>
Returns Promise<R[]>