tor-browser

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

functions.js (397B)


      1 var rollupBabel7Functions = (function () {
      2  'use strict';
      3 
      4  function root() {
      5    function decl(p1) {
      6      var inner = function inner(p2) {
      7        var arrow = function arrow(p3) {
      8          console.log("pause here", p3, arrow, p2, inner, p1, decl, root);
      9        };
     10 
     11        arrow();
     12      };
     13 
     14      inner();
     15    }
     16 
     17    decl();
     18  }
     19 
     20  return root;
     21 
     22 }());
     23 //# sourceMappingURL=functions.js.map