(host)
| 30 | } |
| 31 | |
| 32 | function getIcloudMailUrlForHost(host) { |
| 33 | const normalizedHost = normalizeIcloudHost(host); |
| 34 | if (normalizedHost === 'icloud.com') return 'https://www.icloud.com/mail/'; |
| 35 | if (normalizedHost === 'icloud.com.cn') return 'https://www.icloud.com.cn/mail/'; |
| 36 | return ''; |
| 37 | } |
| 38 | |
| 39 | function getIcloudSetupUrlForHost(host) { |
| 40 | const normalizedHost = normalizeIcloudHost(host); |
no test coverage detected