(email: string)
| 221 | const plusIndex = local.indexOf('+'); |
| 222 | if (plusIndex !== -1) { |
| 223 | local = local.slice(0, plusIndex); |
| 224 | } |
| 225 | |
| 226 | // Gmail and Googlemail are the same mailbox; normalize dots and domain |
| 227 | const isGmail = domain === 'gmail.com' || domain === 'googlemail.com'; |
| 228 | if (isGmail) { |
no outgoing calls
no test coverage detected