for-loops.js (366B)
1 var rollupForLoops = (function () { 2 'use strict'; 3 4 function root() { 5 6 for (let i = 1; i < 2; i++) { 7 console.log("pause here", root); 8 } 9 10 for (let i in { 2: "" }) { 11 console.log("pause here", root); 12 } 13 14 for (let i of [3]) { 15 console.log("pause here", root); 16 } 17 } 18 19 return root; 20 21 }()); 22 //# sourceMappingURL=for-loops.js.map