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