Skip to main content
Module

x/coreutils/deps.ts>assertStrictEquals

🍥 Cross-platform JavaScript rewrite of the GNU Coreutils
Latest
function assertStrictEquals
import { assertStrictEquals } from "https://deno.land/x/coreutils@v0.1.6/deps.ts";

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: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string