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

x/complaindate/dev_deps.ts>assertInstanceOf

JavaScript date-time utilities that keeps timezones on the surface
Go to Latest
function assertInstanceOf
import { assertInstanceOf } from "https://deno.land/x/complaindate@v0.7.2/dev_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>