File size: 189 Bytes
c2b7eb3
 
 
 
 
 
 
 
 
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)
}