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

x/asynciter/first.ts>first

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

Return the first item of the sequence.

Parameters

iterable: AsyncIterable<T>

Returns

Promise<T | null>

The first item of the sequence.