nope/lib/helpers/idMethods.ts

5 lines
75 B
TypeScript
Raw Normal View History

2020-08-25 22:11:26 +00:00
import { v4 } from 'uuid';
export function generateId() {
return v4();
}