Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
150
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
09f13ea
inference-playground
/
src
/
lib
/
utils
/
url.ts
Thomas G. Lopes
UX adjustments (#76)
28faefd
unverified
12 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
;
}
}