input.js (258B)
1 export default function root() { 2 let i = 0; 3 4 for (let i = 1; i < 2; i++) { 5 console.log("pause here", root); 6 } 7 8 for (let i in { 2: "" }) { 9 console.log("pause here", root); 10 } 11 12 for (let i of [3]) { 13 console.log("pause here", root); 14 } 15 }