3
common/resources/client/utils/number/clamp.ts
Executable file
3
common/resources/client/utils/number/clamp.ts
Executable file
@@ -0,0 +1,3 @@
|
||||
export function clamp(num: number, min: number, max: number) {
|
||||
return Math.min(Math.max(num, min), max);
|
||||
}
|
||||
Reference in New Issue
Block a user