(value: string | null | undefined)
| 93 | } |
| 94 | |
| 95 | function normalizeEmail(value: string | null | undefined): string | null { |
| 96 | const normalized = value?.trim().toLowerCase(); |
| 97 | return normalized?.includes("@") ? normalized : null; |
| 98 | } |
| 99 | |
| 100 | type VerifyApiKeyResponse = { |
| 101 | valid: boolean; |
no outgoing calls
no test coverage detected