tor-browser

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

error_worker.js (267B)


      1 this.onpush = function (event) {
      2  var request = event.data.json();
      3  if (request.type == "exception") {
      4    throw new Error("Uncaught exception");
      5  }
      6  if (request.type == "rejection") {
      7    event.waitUntil(Promise.reject(new Error("Unhandled rejection")));
      8  }
      9 };