step-over-function-params.js (562B)
1 var rollupBabel6StepOverFunctionParams = (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 === undefined ? {} : _ref$a; 12 var a7 = _ref$a.a6; 13 14 console.log("pause next here"); 15 } 16 17 function fn() { 18 console.log("pause here"); 19 test("1", undefined, { a3: "3", a4: "4", a5: { a6: "7" } }); 20 } 21 22 return fn; 23 24 }()); 25 //# sourceMappingURL=step-over-function-params.js.map