step-over-for-of.js (307B)
1 var rollupStepOverForOf = (function () { 2 'use strict'; 3 4 const vals = [1, 2]; 5 6 function root() { 7 console.log("pause here"); 8 9 for (const val of vals) { 10 console.log("pause again", val); 11 } 12 13 console.log("done"); 14 } 15 16 return root; 17 18 }()); 19 //# sourceMappingURL=step-over-for-of.js.map