Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jdelavande/chat-ui-energy
chkla
/
chat-ui-energy
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a99bd3b
chat-ui-energy
/
src
/
lib
/
utils
/
isUrl.ts
Liam Dyer
Web Search: Playwright, spatial parsing, markdown (#1094)
2c00ea8
unverified
about 1 year ago
raw
Copy download link
history
blame
Safe
111 Bytes
export
function
isURL
(
url:
string
) {
try
{
new
URL
(url);
return
true
;
}
catch
(e) {
return
false
;
}
}