tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

match_all_worker.js (191B)


      1 function loop() {
      2  self.clients.matchAll().then(function (result) {
      3    setTimeout(loop, 0);
      4  });
      5 }
      6 
      7 onactivate = function (e) {
      8  // spam matchAll until the worker is closed.
      9  loop();
     10 };