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.220.1/testing/asserts.ts";
Deep equality comparison used in assertions
Examples
Example 1
Example 1
import { equal } from "https://deno.land/std@0.220.1/testing/asserts.ts";
equal({ foo: "bar" }, { foo: "bar" }); // Returns `true`
equal({ foo: "bar" }, { foo: "baz" }); // Returns `false