import { boolean } from "https://deno.land/x/fun@v.2.0.0-alpha.11/mod.ts";
const { equals } = boolean;
Test the equality of two booleans.
Examples
Example 1
Example 1
import { equals } from "./boolean.ts";
const result1 = equals(true)(false); // false
const result2 = equals(true)(true); // true