tor-browser

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

match_all_advanced_worker.js (130B)


      1 onmessage = function (e) {
      2  self.clients.matchAll().then(function (clients) {
      3    e.source.postMessage(clients.length);
      4  });
      5 };