(hostname = '')
| 3285 | } |
| 3286 | |
| 3287 | function is163MailHost(hostname = '') { |
| 3288 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.is163MailHost) { |
| 3289 | return navigationUtils.is163MailHost(hostname); |
| 3290 | } |
| 3291 | return hostname === 'mail.163.com' |
| 3292 | || hostname.endsWith('.mail.163.com') |
| 3293 | || hostname === 'webmail.vip.163.com'; |
| 3294 | } |
| 3295 | |
| 3296 | function isLocalhostOAuthCallbackUrl(rawUrl) { |
| 3297 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isLocalhostOAuthCallbackUrl) { |
no outgoing calls
no test coverage detected