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

x/html_parser/src/deps.ts>assertions.assertArrayIncludes

Port of fb55/htmlparser2 for Deno
Very Popular
Latest
function assertions.assertArrayIncludes
import { assertions } from "https://deno.land/x/html_parser@v0.1.3/src/deps.ts";
const { assertArrayIncludes } = assertions;

Make an assertion that actual includes the expected values. If not then an error will be thrown.

Type parameter can be specified to ensure values under comparison have the same type. For example:

assertArrayIncludes<number>([1, 2], [2])

Parameters

actual: ArrayLike<unknown>
expected: ArrayLike<unknown>
optional
msg: string

Parameters

actual: ArrayLike<T>
expected: ArrayLike<T>
optional
msg: string