nope/lib/helpers/idMethods.ts
2020-08-26 00:11:26 +02:00

5 lines
75 B
TypeScript

import { v4 } from 'uuid';
export function generateId() {
return v4();
}