Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jairwaal
/
image
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4f33245
image
/
src
/
utils
/
idGenerator.js
hadadrjt
image: Migrate to Node.js.
c34c995
about 2 months ago
raw
Copy download link
history
blame
201 Bytes
//
// SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
// SPDX-License-Identifier: Apache-2.0
//
export
const
generateId
= (
) => {
return
Math
.
random
()
.
toString
(
36
)
.
substring
(
2
,
15
);
};