4 lines
109 B
TypeScript
Executable File
4 lines
109 B
TypeScript
Executable File
export function clamp(num: number, min: number, max: number) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|