Skip to main content
Module

x/lru_map/dev_deps.ts>assertNotStrictEquals

Minimum LRU cache based on Map object
Latest
function assertNotStrictEquals
import { assertNotStrictEquals } from "https://deno.land/x/lru_map@1.0.0-beta.1/dev_deps.ts";

Make an assertion that actual and expected are not strictly equal. If the values are strictly equal then throw.

import { assertNotStrictEquals } from "./asserts.ts";

assertNotStrictEquals(1, 1)

Parameters

actual: T
expected: T
optional
msg: string