Module

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

A better way to work with processes in Deno.
Latest
function filter
import { filter } from "https://dotland.deno.dev/x/proc@0.21.9/tests/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.

import filter
import { filter } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/asynciter.ts";