mirror of
https://github.com/zoriya/v10.git
synced 2026-08-15 10:23:32 +00:00
10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
let id = 0;
|
|
|
|
/**
|
|
* Generates a unique ID for an element.
|
|
*/
|
|
export function uniqueId(): string {
|
|
id++;
|
|
return `:h${id}:`;
|
|
}
|