All files
/
src/utils
clamp.ts
1 2 3
5x
87x
export const clamp = (min: number, max: number, v: number) => Math.min(Math.max(v, min), max);