Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coyotte508
/
chat-ui
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-ui
/
src
/
lib
/
utils
/
isUrl.ts
coyotte508
A new start
fc69895
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
111 Bytes
export
function
isURL
(
url:
string
) {
try
{
new
URL
(url);
return
true
;
}
catch
(e) {
return
false
;
}
}