(rawUrl)
| 53 | } |
| 54 | |
| 55 | function isSignupEmailVerificationPageUrl(rawUrl) { |
| 56 | const parsed = parseUrlSafely(rawUrl); |
| 57 | if (!parsed) return false; |
| 58 | return isSignupPageHost(parsed.hostname) |
| 59 | && /\/email-verification(?:[/?#]|$)/i.test(parsed.pathname || ''); |
| 60 | } |
| 61 | |
| 62 | function is163MailHost(hostname = '') { |
| 63 | return hostname === 'mail.163.com' |
no test coverage detected