Skip to main content
Module

x/netzo/deps/std/assert/mod.ts>assertNotInstanceOf

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
function assertNotInstanceOf
import { assertNotInstanceOf } from "https://deno.land/x/netzo@0.5.30/deps/std/assert/mod.ts";

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

Parameters

actual: A
unexpectedType: new (...args: any[]) => T
optional
msg: string

Returns

asserts actual is Exclude<A, T>