6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
|
|
import { v4 as uuidv4 } from 'uuid';
|
||
|
|
|
||
|
|
|
||
|
|
export const generateKey = ()=>{
|
||
|
|
return uuidv4();
|
||
|
|
}
|