image / src /utils /idGenerator.js
hadadrjt's picture
image: Migrate to Node.js.
c34c995
raw
history blame
201 Bytes
//
// SPDX-FileCopyrightText: Hadad <[email protected]>
// SPDX-License-Identifier: Apache-2.0
//
export const generateId = () => {
return Math.random()
.toString(36)
.substring(2, 15);
};