(rawUrl)
| 3275 | } |
| 3276 | |
| 3277 | function isSignupEmailVerificationPageUrl(rawUrl) { |
| 3278 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupEmailVerificationPageUrl) { |
| 3279 | return navigationUtils.isSignupEmailVerificationPageUrl(rawUrl); |
| 3280 | } |
| 3281 | const parsed = parseUrlSafely(rawUrl); |
| 3282 | if (!parsed) return false; |
| 3283 | return isSignupPageHost(parsed.hostname) |
| 3284 | && /\/email-verification(?:[/?#]|$)/i.test(parsed.pathname || ''); |
| 3285 | } |
| 3286 | |
| 3287 | function is163MailHost(hostname = '') { |
| 3288 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.is163MailHost) { |
nothing calls this directly
no test coverage detected