Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/asynciter/mod.ts>first

Map, filter, reduce for AsyncIterables in Deno.
Go to Latest
function first
Re-export
import { first } from "https://deno.land/x/asynciter@0.0.15/mod.ts";

Return the first item of the sequence.

Parameters

iterable: AsyncIterable<T>

Returns

Promise<T | null>

The first item of the sequence.