4 lines
113 B
TypeScript
4 lines
113 B
TypeScript
export function clamp(value: number, min: number, max: number) {
|
|
return Math.min(Math.max(value, min), max);
|
|
}
|