Skip to main content
Module

x/lume/deps/assert.ts>assertNotEquals

🔥 Static site generator for Deno 🦕
Very Popular
Latest
function assertNotEquals
import { assertNotEquals } from "https://deno.land/x/lume@v2.1.4/deps/assert.ts";

Make an assertion that actual and expected are not equal, deeply. If not then throw.

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

Examples

Example 1

import { assertNotEquals } from "https://deno.land/std@0.224.0/assert/assert_not_equals.ts";

assertNotEquals(1, 2); // Doesn't throw
assertNotEquals(1, 1); // Throws

Parameters

actual: T
expected: T
optional
msg: string