Skip to main content
Module

x/pagic/deps.ts>asserts.assertStrictEquals

A static site generator powered by Deno + React
Go to Latest
function asserts.assertStrictEquals
import { asserts } from "https://deno.land/x/pagic@v1.5.1/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: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string