clamp
import { clamp } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";Clamp a value between min and max
function clamp(
value: number,
min: number,
max: number,
): number;function clamp(
value: bigint,
min: bigint,
max: bigint,
): bigint;function clamp<T extends number | bigint>(
value: T,
min: T,
max: T,
): T;