antares/src/common/libs/utilities.js

4 lines
96 B
JavaScript
Raw Normal View History

2020-05-15 17:52:59 +02:00
export function uidGen () {
return Math.random().toString(36).substr(2, 9).toUpperCase();
};