tor-browser

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

clearTimeoutsImplicit_worker.js (186B)


      1 var count = 0;
      2 function timerFunction() {
      3  if (++count == 30) {
      4    postMessage("ready");
      5    while (true) {}
      6  }
      7 }
      8 
      9 for (var i = 0; i < 10; i++) {
     10  setInterval(timerFunction, 500);
     11 }