Spaces:
Sleeping
Sleeping
File size: 176 Bytes
cfaaa6c | 1 2 3 4 5 6 7 | let globalCounter = 0;
export function createBrowserId(prefix = 'id') {
globalCounter += 1;
return `${prefix}_${Date.now().toString(36)}_${globalCounter.toString(36)}`;
}
|