Module

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

A better way to work with processes in Deno.
Latest
function reduce
import { reduce } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/asynciter.ts";

Reduce a sequence to a single value.

Parameters

iterable: AsyncIterable<T>

The reducing function.

zero: U
reduceFn: (acc: U, item: T) => U | Promise<U>

Returns

Promise<U>

The result of applying the reducing function to each item and accumulating the result.

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