functions.js (383B)
1 var rollupFunctions = (function () { 2 'use strict'; 3 4 function root() { 5 6 function decl(p1) { 7 const inner = function inner(p2) { 8 const arrow = (p3) => { 9 console.log("pause here", p3, arrow, p2, inner, p1, decl, root); 10 }; 11 arrow(); 12 }; 13 inner(); 14 } 15 16 decl(); 17 } 18 19 return root; 20 21 }()); 22 //# sourceMappingURL=functions.js.map