5 lines
78 B
JavaScript
5 lines
78 B
JavaScript
async function* g(x = async function() { await 1 }) {
|
|
await 2;
|
|
yield 3;
|
|
}
|