@@ -0,0 +1,3 @@
export function clamp(num: number, min: number, max: number) {
return Math.min(Math.max(num, min), max);
}
The note is not visible to the blocked user.