4 lines
89 B
JavaScript
4 lines
89 B
JavaScript
async function* fn() {
|
|
yield* [Promise.resolve("ok")] // CreateAsyncFromSyncIterator
|
|
}
|