(host)
| 23 | } |
| 24 | |
| 25 | function getIcloudLoginUrlForHost(host) { |
| 26 | const normalizedHost = normalizeIcloudHost(host); |
| 27 | if (normalizedHost === 'icloud.com') return 'https://www.icloud.com/'; |
| 28 | if (normalizedHost === 'icloud.com.cn') return 'https://www.icloud.com.cn/'; |
| 29 | return ''; |
| 30 | } |
| 31 | |
| 32 | function getIcloudMailUrlForHost(host) { |
| 33 | const normalizedHost = normalizeIcloudHost(host); |
no test coverage detected