Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
150
Build error
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
28faefd
inference-playground
/
src
/
lib
/
utils
/
url.ts
Thomas G. Lopes
UX adjustments (#76)
28faefd
unverified
10 days ago
raw
Copy download link
history
blame
Safe
121 Bytes
export
function
isValidURL
(
url:
string
):
boolean
{
try
{
new
URL
(url);
return
true
;
}
catch
{
return
false
;
}
}