mirror of
https://github.com/iptv-org/iptv
synced 2025-12-16 10:26:48 -05:00
9 lines
128 B
TypeScript
9 lines
128 B
TypeScript
export function isURI(string: string): boolean {
|
|
try {
|
|
new URL(string)
|
|
return true
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|