Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/proc/mod.ts>Enumerable#map

A better way to work with processes in Deno.
Latest
method Enumerable.prototype.map
Re-export
import { Enumerable } from "https://deno.land/x/proc@0.22.1/mod.ts";

Map the iterator from one type to another.

Parameters

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

The mapping function.

Returns

An iterable of mapped values.