tor-browser

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

bug1104064_worker.js (191B)


      1 onmessage = function () {
      2  var counter = 0;
      3  var id = setInterval(function () {
      4    ++counter;
      5    if (counter == 2) {
      6      clearInterval(id);
      7      postMessage("done");
      8    }
      9  }, 0);
     10 };