Formatting

This commit is contained in:
2026-08-06 13:32:16 +00:00
parent f1bdb1c9ed
commit 6306cc3380
3 changed files with 32 additions and 15 deletions
+5 -5
View File
@@ -8,9 +8,9 @@
* @returns True if the value is within the bounds, false otherwise
*/
export const isWithinBounds = (value: number, min: number, max: number): boolean => {
if (value < min || value > max) {
return false;
}
if (value < min || value > max) {
return false;
}
return true;
};
return true;
};