isAbsoluteUrl.d.ts 167 B

123456
  1. /**
  2. * If either :// or // is present consider it to be an absolute url
  3. *
  4. * @param url string
  5. */
  6. export declare function isAbsoluteUrl(url: string): boolean;