tor-browser

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

complex-nesting.js (571B)


      1 function named(module, exports, __webpack_require__) {
      2 
      3 "use strict";
      4 
      5 
      6 Object.defineProperty(exports, "__esModule", {
      7  value: true
      8 });
      9 exports.default = root;
     10 function root() {
     11  function fn(arg) {
     12    var _this = this,
     13        _arguments = arguments;
     14 
     15    console.log(this, arguments);
     16    console.log("pause here", fn, root);
     17 
     18    var arrow = function arrow(argArrow) {
     19      console.log(_this, _arguments);
     20      console.log("pause here", fn, root);
     21    };
     22    arrow("arrow-arg");
     23  }
     24 
     25  fn.call("this-value", "arg-value");
     26 }
     27 module.exports = exports["default"];
     28 
     29 }