Skip to main content
Module

std/testing/asserts.ts>equal

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

This will be removed in 1.0.0. Import from https://deno.land/std/assert/equal.ts instead.

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

Deep equality comparison used in assertions

Examples

Example 1

import { equal } from "https://deno.land/std@0.224.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