Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Error410
/
jvcgpt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b3eaa44
jvcgpt
/
src
/
utils
/
uuids.ts
Greums
crlf to lf
1813a37
2 months ago
raw
Copy download link
history
blame
Safe
210 Bytes
export
function
generateUUID
(
):
string
{
return
"10000000-1000-4000-8000-100000000000"
.
replace
(
/[018]/g
,
c
=>
(+c ^ crypto.
getRandomValues
(
new
Uint8Array
(
1
))[
0
] &
15
>> +c /
4
).
toString
(
16
)
);
}