1e92f2d
1
2
3
export const clamp = (min: number, max: number, v: number) => Math.min(Math.max(v, min), max)