Skip to content

Instantly share code, notes, and snippets.

@fostyfost
Created November 4, 2021 10:37
Show Gist options
  • Save fostyfost/5bb9762956fc7075fde9164fca02967c to your computer and use it in GitHub Desktop.
Save fostyfost/5bb9762956fc7075fde9164fca02967c to your computer and use it in GitHub Desktop.
Absolute URL check
// Universal, non case-sensitive, protocol-agnostic approach:
const reg = new RegExp('^(?:[a-z]+:)?//', 'i')
export const isAbsoluteUrl = (value: string): boolean => reg.test(value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment