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

x/asynciter/asynciter.ts>asynciter

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

Convert an array or a standard AsyncIterable to an AsyncIter.

Parameters

items: Iterable<T> | AsyncIterable<T> | Array<T>

A collection of items.