function mapRe-exportimport { map } from "https://deno.land/x/proc@0.20.20/src/deps/asynciter.ts"; map<T, U>(iterable: AsyncIterable<T>, mapFn: (item: T) => U | Promise<U>): AsyncIterableIterator<U>Map the sequence from one type to another. Type ParametersTUParametersiterable: AsyncIterable<T>An iterable collection. mapFn: (item: T) => U | Promise<U>The mapping function. ReturnsAsyncIterableIterator<U>An iterator of mapped values.