step-over-for-of-array.js (448B)
1 var rollupBabel7StepOverForOfArray = (function () { 2 'use strict'; 3 4 // Babel will optimize this for..of because it call tell the value is an array. 5 function root() { 6 console.log("pause here"); 7 var _arr = [1, 2]; 8 9 for (var _i = 0; _i < _arr.length; _i++) { 10 var val = _arr[_i]; 11 console.log("pause again", val); 12 } 13 14 console.log("done"); 15 } 16 17 return root; 18 19 }()); 20 //# sourceMappingURL=step-over-for-of-array.js.map