antares/src/common/libs/uidGen.ts

4 lines
145 B
TypeScript

export function uidGen (prefix?: string) {
return (prefix ? `${prefix}:` : '') + Math.random().toString(36).substring(2, 11).toUpperCase();
}