Q-Apps-Utils/Numbers/Numbers.ts
2023-10-09 12:44:15 -06:00

10 lines
195 B
TypeScript

export const setNumberWithinBounds = (
num: number,
minValue: number,
maxValue: number
) => {
if (num > maxValue) return maxValue;
if (num < minValue) return minValue;
return num;
};