compare
import { compare } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/boolean.ts";Test the equality of two booleans.
@example
import { compare } from "./boolean.ts";
const result1 = compare(true)(false); // false
const result2 = compare(true)(true); // true
function compare(second: boolean): (first: boolean) => boolean;