1 2 3 4
export function clamp(x, min, max) { return Math.min(Math.max(x, min), max); }
[PATCH repo_name]