2019-11-07 10:58:15 +08:00
|
|
|
import { UrlWithStringQuery, parse as uriParse } from 'url'
|
2019-12-03 12:08:52 +08:00
|
|
|
import { isString } from '@vue/shared'
|
2019-11-07 10:58:15 +08:00
|
|
|
|
2020-01-20 22:57:17 +08:00
|
|
|
export function isRelativeUrl(url: string): boolean {
|
|
|
|
const firstChar = url.charAt(0)
|
|
|
|
return firstChar === '.' || firstChar === '~' || firstChar === '@'
|
|
|
|
}
|
|
|
|
|
2020-05-03 02:49:28 +08:00
|
|
|
/**
|
|
|
|
* Parses string url into URL object.
|
|
|
|
*/
|
2019-12-02 01:02:53 +08:00
|
|
|
export function parseUrl(url: string): UrlWithStringQuery {
|
2019-11-07 10:58:15 +08:00
|
|
|
const firstChar = url.charAt(0)
|
2020-01-20 22:57:17 +08:00
|
|
|
if (firstChar === '~') {
|
|
|
|
const secondChar = url.charAt(1)
|
|
|
|
url = url.slice(secondChar === '/' ? 2 : 1)
|
2019-11-07 10:58:15 +08:00
|
|
|
}
|
2019-12-02 01:02:53 +08:00
|
|
|
return parseUriParts(url)
|
2019-11-07 10:58:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vuejs/component-compiler-utils#22 Support uri fragment in transformed require
|
|
|
|
* @param urlString an url as a string
|
|
|
|
*/
|
|
|
|
function parseUriParts(urlString: string): UrlWithStringQuery {
|
2019-12-03 12:08:52 +08:00
|
|
|
// A TypeError is thrown if urlString is not a string
|
|
|
|
// @see https://nodejs.org/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost
|
|
|
|
return uriParse(isString(urlString) ? urlString : '')
|
2019-11-07 10:58:15 +08:00
|
|
|
}
|