Skip to main content
Module

std/testing/asserts.ts>equal

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function equal
Deprecated
Deprecated

(will be removed after 1.0.0) Import from https://deno.land/std/assert/equal.ts instead.

import { equal } from "https://deno.land/std@0.218.0/testing/asserts.ts";

Deep equality comparison used in assertions

Examples

Example 1

import { equal } from "https://deno.land/std@0.218.0/testing/asserts.ts";

equal({ foo: "bar" }, { foo: "bar" }); // Returns `true`
equal({ foo: "bar" }, { foo: "baz" }); // Returns `false

Parameters

c: unknown

actual value

d: unknown

expected value

Returns

boolean