1 2 3
export function clamp(x: number, min: number, max: number): number { return Math.max(min, Math.min(max, x)) }