rt-sim-training-client/src/jmapNew/utils/Uid.js
2019-12-05 16:17:54 +08:00

12 lines
239 B
JavaScript

var base = 0;
/**
* @public
* @param {string} type
* @return {string}
*/
export function getUID(type) {
// use Math.random to make id as unique as possible.
return [(type || ''), base++, Math.random().toFixed(5)].join('_');
}