import {parseUrl} from 'url-vir';
let result = parseUrl('https://example.com:123/hello/there');
// output
result = {
protocol: 'https',
username: '',
password: '',
host: 'example.com:123',
hostname: 'example.com',
port: '123',
origin: 'https://example.com:123',
pathname: '/hello/there',
paths: [
'hello',
'there',
],
search: '',
searchParams: {},
hash: '',
fullPath: '/hello/there',
href: 'https://example.com:123/hello/there',
};
Converts a string or
URL
instance into UrlParts.