Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/proc/src/runnable-iterable.ts>Runnable#map

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
method Runnable.prototype.map
import { Runnable } from "https://deno.land/x/proc@0.20.7/src/runnable-iterable.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.