tor-browser

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

throwing-module-1.js (99B)


      1 "use strict";
      2 
      3 function throwingMethod() {
      4  throw new Error("my-exception");
      5 }
      6 
      7 throwingMethod();