Skip to main content
Module

x/asynciter/collect.ts>collect

Map, filter, reduce for AsyncIterables in Deno.
Go to Latest
function collect
import { collect } from "https://deno.land/x/asynciter@0.0.16/collect.ts";

Collect the items in this iterator to an array.

Parameters

iterable: AsyncIterable<T>

Returns

Promise<T[]>

The items of this iterator collected to an array.