All files / src/utils clamp.ts

1 2 35x 87x  
export const clamp = (min: number, max: number, v: number) =>
  Math.min(Math.max(v, min), max);