Scribbler310's picture
feat: enhance dashboard
c2b7eb3 verified
export function isValidUrl(string: string) {
try {
new URL(string)
} catch (_) {
return false
}
return true
}