This commit is contained in:
2025-08-22 14:11:18 -05:00
commit 3e9ca1a146
88 changed files with 14387 additions and 0 deletions

4
web/lib/utils.ts Normal file
View File

@@ -0,0 +1,4 @@
export function formatPhone(raw: string) {
const digits = raw.replace(/\D/g, '').slice(-10);
return `(${digits.slice(0,3)}) ${digits.slice(3,6)}-${digits.slice(6)}`;
}