mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at verify-code 3 lines 112 B view raw
1export function clamp(v: number, min: number, max: number): number { 2 return Math.min(max, Math.max(min, v)) 3}