Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ar08
/
zzz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2bc414a
zzz
/
frontend
/
src
/
utils
/
get-random-key.ts
ar08
Upload 1040 files
246d201
verified
3 months ago
raw
Copy download link
history
blame
Safe
193 Bytes
export
const
getRandomKey
= (
obj: Record<
string
,
string
>
) => {
const
keys =
Object
.
keys
(obj);
const
randomKey = keys[
Math
.
floor
(
Math
.
random
() * keys.
length
)];
return
randomKey;
};