5 lines
103 B
TypeScript
5 lines
103 B
TypeScript
|
let __uniqueId__: number = 0
|
||
|
|
||
|
export function uniqueId() {
|
||
|
return `__unique_${__uniqueId__++}__`;
|
||
|
}
|