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

x/combinatorics/test_deps.ts>assertInstanceOf

🦕 Combinatorial generators including combinations, permutations, combinations with replacement, permutations with replacement, cartesian products, and power sets.
Latest
function assertInstanceOf
import { assertInstanceOf } from "https://deno.land/x/combinatorics@1.1.2/test_deps.ts";

Make an assertion that obj is an instance of type. If not then throw.

Type Parameters

T extends AnyConstructor

Parameters

actual: unknown
expectedType: T
optional
msg = [UNSUPPORTED]

Returns

asserts actual is GetConstructorType<T>