tor-browser

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

this-arguments-bindings.js (546B)


      1 var rollupBabel7ThisArgumentsBindings = (function () {
      2  'use strict';
      3 
      4  function root() {
      5    function fn(arg) {
      6      var _this = this,
      7          _arguments = arguments;
      8 
      9      console.log(this, arguments);
     10      console.log("pause here", fn, root);
     11 
     12      var arrow = function arrow(argArrow) {
     13        console.log(_this, _arguments);
     14        console.log("pause here", fn, root);
     15      };
     16 
     17      arrow("arrow-arg");
     18    }
     19 
     20    fn.call("this-value", "arg-value");
     21  }
     22 
     23  return root;
     24 
     25 }());
     26 //# sourceMappingURL=this-arguments-bindings.js.map