Spaces:
Sleeping
Sleeping
File size: 189 Bytes
4a288a7 | 1 2 3 4 5 6 7 8 9 10 | /**
* If either :// or // is present consider it to be an absolute url
*
* @param url string
*/
export function isAbsoluteUrl(url: string) {
return new RegExp(`(^|:)//`).test(url)
}
|