Module

x/proc/tests/deps/asserts.ts>assertNotInstanceOf

A better way to work with processes in Deno.
Latest
function assertNotInstanceOf
import { assertNotInstanceOf } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/asserts.ts";

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

Examples

Example 1

import { assertNotInstanceOf } from "https://deno.land/std@$STD_VERSION/assert/assert_not_instance_of.ts";

assertNotInstanceOf(new Date(), Number); // Doesn't throw
assertNotInstanceOf(new Date(), Date); // Throws

Parameters

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

Returns

asserts actual is Exclude<A, T>