tor-browser

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

test-error-worker2.js (124B)


      1 "use strict";
      2 
      3 self.addEventListener("message", ({ data }) => foo(data));
      4 
      5 function foo() {
      6  throw new Error("worker2");
      7 }