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

x/proc/src/deps/asynciter.ts>filter

A better way to work with processes in Deno.
Go to Latest
function filter
Re-export
import { filter } from "https://deno.land/x/proc@0.20.37/src/deps/asynciter.ts";

Filter the sequence to contain just the items that pass a test.

Parameters

iterable: AsyncIterable<T>

An iterable collection.

filterFn: (item: T) => boolean | Promise<boolean>

The filter function; true to keep the item, false to discard.

Returns

AsyncIterableIterator<T>

An iterator returning the values that pass the filter function.