tor-browser

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

this-arguments-bindings.js (545B)


      1 var rollupBabel6ThisArgumentsBindings = (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      arrow("arrow-arg");
     17    }
     18 
     19    fn.call("this-value", "arg-value");
     20  }
     21 
     22  return root;
     23 
     24 }());
     25 //# sourceMappingURL=this-arguments-bindings.js.map