original.js (237B)
1 window.bar = function bar() { 2 return new Promise(resolve => setTimeout(resolve, 100)) 3 } 4 5 // New comment 6 // to add some 7 // non-breakable lines 8 window.foo = async function foo() { 9 await bar(); 10 console.log("YO") 11 } 12 13 console.log("HEY")