Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
11811dc verified
Raw
History Blame Contribute Delete
127 Bytes
export function isValidUrl(string: string) {
try {
new URL(string)
} catch (_) {
return false
}
return true
}