import { clamp } from "https://deno.land/x/rambda@9.4.1/index.d.ts";
Restrict a number input
to be within min
and max
limits.
If input
is bigger than max
, then the result is max
.
If input
is smaller than min
, then the result is min
.