Source code

Revision control

Copy as Markdown

Other Tools

var rollupBabel6StepOverForOfArray = (function () {
'use strict';
// Babel will optimize this for..of because it call tell the value is an array.
function root() {
console.log("pause here");
var _arr = [1, 2];
for (var _i = 0; _i < _arr.length; _i++) {
var val = _arr[_i];
console.log("pause again", val);
}
console.log("done");
}
return root;
}());
//# sourceMappingURL=step-over-for-of-array.js.map