Files
2021-10-07 23:57:25 +02:00

4 lines
89 B
JavaScript

async function* fn() {
yield* [Promise.resolve("ok")] // CreateAsyncFromSyncIterator
}