()
| 130 | * @returns The unique ID. |
| 131 | */ |
| 132 | export function getUniqueId(): number { |
| 133 | idCounter = (idCounter + 1) % MAX; |
| 134 | return idCounter; |
| 135 | } |
| 136 | |
| 137 | // ─── Iterable / Entry Helpers ─────────────────────────────────────────────────── |
| 138 |
no outgoing calls
no test coverage detected