File size: 112 Bytes
2409829
 
 
1
2
3
4
export function clamp(value: number, min = 0, max = 1): number {
	return Math.max(min, Math.min(value, max));
}