Keep a maximum on the tab ids

This commit is contained in:
Kuba Orlik 2024-05-21 21:41:41 +02:00
parent ef82ae7bc6
commit 1cdce6b058

View File

@ -5,6 +5,9 @@ const ids = (function* () {
let i = 0;
while (true) {
yield i++;
if (i >= 100000) {
i = 0;
}
}
})();