Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

7 lines
147 B
JavaScript

/**
* Clamps a number between a minimum and maximum value.
*/
export function clamp(n, min, max) {
return Math.min(max, Math.max(min, n));
}