aboutsummaryrefslogtreecommitdiff
path: root/src/modules/shared/number.models.ts
blob: 45f7509be9be27584487a80b74611e05526b2888 (plain) (blame)
1
2
3
4
5
function clamp({ value, min = 0, max = 100 }: { value: number; min?: number; max?: number }) {
  return Math.min(Math.max(value, min), max);
}

export { clamp };