(value: string)
| 65 | } |
| 66 | |
| 67 | function isRemoteUrl(value: string) { |
| 68 | return /^https?:\/\//i.test(value) || /^file:\/\//i.test(value) |
| 69 | } |
| 70 | |
| 71 | function sanitizeId(value: string) { |
| 72 | const normalized = value.trim().toLowerCase() |
no test coverage detected