vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Function mapAsync

    • Execute the map callback async in sequence on each of the items in the specified Iterable

      Type Parameters

      • T
      • R

      Parameters

      • array: Iterable<T>

        An Iterable to execute the callback on

      • callback: (item: T, index: number) => Promise<R>

        The callback to execute for each item

      Returns Promise<R[]>