about summary refs log tree commit diff
path: root/src/lib/numbers.ts
blob: fdf2cad858d969aba2f3835e2d98e987f3181604 (plain) (blame)
1
2
3
export function clamp(v: number, min: number, max: number): number {
  return Math.min(max, Math.max(min, v))
}