tor-browser

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

throwing-module-2.js (135B)


      1 "use strict";
      2 
      3 function throwingMethod() {
      4  // eslint-disable-next-line no-throw-literal
      5  throw "my-exception";
      6 }
      7 
      8 throwingMethod();