Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/src/deps/asynciter.ts>concurrentMap

A better way to work with processes in Deno.
Very Popular
Go to Latest
function concurrentMap
Re-export
import { concurrentMap } from "https://deno.land/x/proc@0.20.43/src/deps/asynciter.ts";

Map the sequence from one type to another, concurrently.

Items are iterated in order.

Parameters

items: AsyncIterable<T>

An iterable collection.

mapFn: (item: T) => Promise<U>

The mapping function.

optional
concurrency: number

Returns

AsyncIterableIterator<U>

An iterator of mapped values.