for-await.js 107 B

12345
  1. async function main () {
  2. for await (const _ of (async function* () {})()) {
  3. require(_)
  4. }
  5. }