Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

number

import { number } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/comparable.ts";

A Comparable that compares number using strict equality.

@example
import { number } from "./comparable.ts";

const result1 = number.compare(1)(2); // false
const result2 = number.compare(1)(1); // true
const number: Comparable<number>;