Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/hex/functions/tests/deps.ts>asserts.assertStrictEquals

An ecosystem delivering practices, philosophy and portability.
Go to Latest
function asserts.assertStrictEquals
import { asserts } from "https://deno.land/x/hex@v0.4.9/functions/tests/deps.ts";
const { assertStrictEquals } = asserts;

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

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

assertStrictEquals(1, 2)

Parameters

actual: unknown
expected: T
optional
msg: string

Returns

asserts actual is T