• Takes an (async) iterator that emits promise-returning functions, invokes them in parallel and emits the results as they become available but in the same order as the input

    Type Parameters

    • T

    Parameters

    • source: AsyncIterable<(() => Promise<T>)> | Iterable<(() => Promise<T>)>
    • size: number = 1

    Returns AsyncGenerator<T, void, undefined>