tor-browser

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

message_posting_worker.js (206B)


      1 onmessage = function (e) {
      2  self.clients.matchAll().then(function (res) {
      3    if (!res.length) {
      4      dump("ERROR: no clients are currently controlled.\n");
      5    }
      6    res[0].postMessage(e.data);
      7  });
      8 };