tor-browser

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

lazy_worker.js (169B)


      1 onactivate = function (event) {
      2  var promise = new Promise(function (res) {
      3    setTimeout(function () {
      4      res();
      5    }, 500);
      6  });
      7  event.waitUntil(promise);
      8 };