import { number } from "https://deno.land/x/fun@v.2.0.0-alpha.11/mod.ts";
const { equals } = number;
Compare two numbers and return true if they are equal.
Examples
Example 1
Example 1
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const result1 = pipe(1, N.equals(2)); // false
const result2 = pipe(1, N.equals(1)); // true