(url: URLObject)
| 51 | * @returns True if the URL object is relative, false otherwise |
| 52 | */ |
| 53 | export function isURLObjectRelative(url: URLObject): url is RelativeURL { |
| 54 | return 'isRelative' in url; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Parses string to a URL object |
no outgoing calls
no test coverage detected