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