mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 04:43:14 +00:00
5 lines
125 B
TypeScript
5 lines
125 B
TypeScript
let guid = Date.now();
|
|
export function uniqueId(prefix = '') {
|
|
return `${prefix}${(guid++).toString(36).toLowerCase()}`;
|
|
}
|