Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/html_parser/src/utils/mod.ts>findAll

Port of fb55/htmlparser2 for Deno
Latest
function findAll
import { findAll } from "https://deno.land/x/html_parser@v0.1.3/src/utils/mod.ts";

Search and array of nodes and its children for nodes passing a test function.

Same as find, only with less options, leading to reduced complexity.

Parameters

test: (elem: Element) => boolean

Function to test nodes on.

nodes: Node[]

Array of nodes to search.

Returns

All nodes passing test.