File size: 127 Bytes
c2b7eb3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export function isValidUrl(string: string) {
  try {
    new URL(string)
  } catch (_) {
    return false
  }

  return true
}