• Creates a PromiseCollection containing promises that will resolve on the next tick using the transform function. This utility function does not chain promises together to create the result, it only uses one promise per transform.

    Returns

    Type Parameters

    • T

    • U

    Parameters

    • source: T[]
    • transform: ((value: T) => U)
        • (value: T): U
        • Parameters

          • value: T

          Returns U

    Returns PromiseCollection<U>

Generated using TypeDoc