image / src /utils /idGenerator.js
hadadrjt's picture
image: Refac B/F.
bc4b939
//
// SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
// SPDX-License-Identifier: Apache-2.0
//
import { randomBytes } from 'crypto';
export const generateId = () => {
return randomBytes(32).toString('hex');
};