Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fourmovie
/
Ai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Ai
/
node_modules
/
@huggingface
/
inference
/
src
/
lib
/
isUrl.ts
fourmovie
update space
bce29b9
11 months ago
raw
Copy download link
history
blame
contribute
delete
124 Bytes
export
function
isUrl
(
modelOrUrl:
string
):
boolean
{
return
/^http(s?):/
.
test
(modelOrUrl) || modelOrUrl.
startsWith
(
"/"
);
}