image / src /utils /idGenerator.js
hadadrjt's picture
image: Migrate to Node.js.
c34c995
raw
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);
};