tor-browser

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

WorkerTerminate.js (144B)


      1 onmessage = function(evt)
      2 {
      3    for (var i=0; true; i++)
      4    {
      5        if (i%1000 == 0)
      6        {
      7            postMessage(i);
      8        }
      9    }
     10 }