import { pooledMap } from "https://dotland.deno.dev/std@0.116.0/async/pool.ts";
pooledMap transforms values from an (async) iterable into another async iterable. The transforms are done concurrently, with a max concurrency defined by the poolLimit.
If an error is thrown from iterableFn
, no new transformations will begin.
All currently executing transformations are allowed to finish and still
yielded on success. After that, the rejections among them are gathered and
thrown by the iterator in an AggregateError
.