memos/web/src/utils/uuid.ts

6 lines
96 B
TypeScript

import { v4 as uuidv4 } from "uuid";
export const generateUUID = () => {
return uuidv4();
};