tor-browser

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

worker-eval.js (118B)


      1 var id = 0;
      2 try {
      3    id = eval("1 + 2 + 3");
      4 } catch (e) {}
      5 postMessage(id === 0 ? "eval blocked" : "eval allowed");