mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 17:29:11 +01:00
6 lines
106 B
JavaScript
6 lines
106 B
JavaScript
|
let ariaIdCounter = 0;
|
||
|
|
||
|
export function generateAriaId() {
|
||
|
return `_aria_auto_id_${ariaIdCounter++}`;
|
||
|
}
|