tor-browser

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

lex-and-nonlex.js (504B)


      1 var rollupBabel7LexAndNonlex = (function () {
      2  'use strict';
      3 
      4  function _classCallCheck(instance, Constructor) {
      5    if (!(instance instanceof Constructor)) {
      6      throw new TypeError("Cannot call a class as a function");
      7    }
      8  }
      9 
     10  function root() {
     11    function someHelper() {
     12      console.log("pause here", root, Thing);
     13    }
     14 
     15    var Thing = function Thing() {
     16      _classCallCheck(this, Thing);
     17    };
     18 
     19    someHelper();
     20  }
     21 
     22  return root;
     23 
     24 }());
     25 //# sourceMappingURL=lex-and-nonlex.js.map