• Executes async code in parallel for each entry of an array.

    Type Parameters

    • T

    Parameters

    • iterable: Iterable<T>

      The value to iterate

    • callback: ((value, index) => AllowPromise<void>)

      The function to call with each entry of the array

    Returns Promise<void>

    A promise that resolves once each callback is done executing (and their promise resolved)