mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
/**
|
|
* @export
|
|
* @param {String} [prefix]
|
|
* @returns {String} Unique ID
|
|
*/
|
|
export function uidGen (prefix) {
|
|
return (prefix ? `${prefix}:` : '') + Math.random().toString(36).substr(2, 9).toUpperCase();
|
|
};
|