As title.
// source code
const main = async () => {
for await (const i of [1, 2, 3]) {
console.log(i);
}
};
// compiled code
const main = () => new Promise(function ($return, $error) {
for await (const i of [1, 2, 3]) {
console.log(i);
}
};
Is this project dead?