4 lines
92 B
TypeScript
4 lines
92 B
TypeScript
|
|
import { v4 as uuidv4 } from "uuid";
|
||
|
|
|
||
|
|
export const generateUUIDv4 = (): string => uuidv4();
|