project config
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
let __uniqueId__: number = 0
|
||||
|
||||
export function uniqueId() {
|
||||
return `__unique_${__uniqueId__++}__`;
|
||||
export function uniqueId(prefix: string) {
|
||||
return `__${prefix}_${__uniqueId__++}__`;
|
||||
}
|
Reference in New Issue
Block a user