function clampimport { clamp } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/number.js"; clamp(number,lower,upper,)Clamps number within the inclusive lower and upper bounds. Examples_.clamp(-10, -5, 5); // => -5 _.clamp(10, -5, 5); // => 5 ParametersnumberThe number to clamp. lowerThe upper bound. upper