b593f0b
1
2
3
4
5
6
7
8
9
10
export function isValidUrl(string: string) { try { new URL(string) } catch (_) { return false } return true }