| 166 | * @property {URL} full - The original URL object with all native URL properties |
| 167 | */ |
| 168 | export interface IURLComponents { |
| 169 | protocol: string; |
| 170 | subdomain: string; |
| 171 | rootDomain: string; |
| 172 | tld: string; |
| 173 | pathname: string; |
| 174 | full: URL; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Process a URL object to extract its components |
nothing calls this directly
no outgoing calls
no test coverage detected