Files
v10/packages/utils/src/shared/crypto.ts
T
2025-10-23 15:19:36 -07:00

10 lines
130 B
TypeScript

let id = 0;
/**
* Generates a unique ID for an element.
*/
export function uniqueId(): string {
id++;
return `:h${id}:`;
}