it-tools/src/modules/shared/number.models.ts
2023-08-07 17:23:07 +02:00

6 lines
162 B
TypeScript

function clamp({ value, min = 0, max = 100 }: { value: number; min?: number; max?: number }) {
return Math.min(Math.max(value, min), max);
}
export { clamp };