hugoWebsite/node_modules/detective/test/files/for-await.js
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉
2022-10-28 17:20:35 -05:00

5 lines
107 B
JavaScript

async function main () {
for await (const _ of (async function* () {})()) {
require(_)
}
}