Module

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

A better way to work with processes in Deno.
Latest
function concurrentMap
import { concurrentMap } from "https://dotland.deno.dev/x/proc@0.21.9/tests/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.

import concurrentMap
import { concurrentMap } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/asynciter.ts";