(url: string)
| 5 | export const SITE_URL = 'https://www.sim.ai' |
| 6 | |
| 7 | function hasHttpProtocol(url: string): boolean { |
| 8 | return /^https?:\/\//i.test(url) |
| 9 | } |
| 10 | |
| 11 | function normalizeBaseUrl(url: string): string { |
| 12 | if (hasHttpProtocol(url)) { |
no test coverage detected