9 lines
76 B
JavaScript
9 lines
76 B
JavaScript
({
|
|
async *g() {
|
|
this;
|
|
await 1;
|
|
yield 2;
|
|
return 3;
|
|
}
|
|
});
|