tor-browser

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

try-catches.js (247B)


      1 var rollupBabel6TryCatches = (function () {
      2  'use strict';
      3 
      4  function root() {
      5 
      6    try {
      7      throw "AnError";
      8    } catch (err) {
      9      console.log("pause here", root);
     10    }
     11  }
     12 
     13  return root;
     14 
     15 }());
     16 //# sourceMappingURL=try-catches.js.map