8 lines
88 B
JavaScript
8 lines
88 B
JavaScript
async function f() {
|
|
await 1;
|
|
async function* g() {
|
|
await 2;
|
|
yield 3;
|
|
}
|
|
}
|