for-of.js (270B)
1 var rollupForOf = (function () { 2 'use strict'; 3 4 function forOf() { 5 for (const x of [1]) { 6 doThing(x); 7 } 8 9 function doThing(arg) { 10 // Avoid optimize out 11 window.console; 12 } 13 } 14 15 return forOf; 16 17 }()); 18 //# sourceMappingURL=for-of.js.map