7 lines
71 B
JavaScript
7 lines
71 B
JavaScript
(async function* agf() {
|
|
this;
|
|
await 1;
|
|
yield 2;
|
|
return 3;
|
|
});
|