mirror of
https://github.com/Qortal/Q-Apps-Utils.git
synced 2025-02-11 17:55:55 +00:00
10 lines
195 B
TypeScript
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;
|
|
};
|