tor-browser

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

step-over-function-params.js (594B)


      1 var rollupBabel7StepOverFunctionParams = (function () {
      2  'use strict';
      3 
      4  function test(a1) {
      5 
      6    var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
      7        a3 = _ref.a3,
      8        a4 = _ref.a4,
      9        _ref$a = _ref.a5;
     10 
     11    _ref$a = _ref$a === void 0 ? {} : _ref$a;
     12    var a7 = _ref$a.a6;
     13    console.log("pause next here");
     14  }
     15 
     16  function fn() {
     17    console.log("pause here");
     18    test("1", undefined, {
     19      a3: "3",
     20      a4: "4",
     21      a5: {
     22        a6: "7"
     23      }
     24    });
     25  }
     26 
     27  return fn;
     28 
     29 }());
     30 //# sourceMappingURL=step-over-function-params.js.map