hugoWebsite/node_modules/detective/test/files/for-await.js

6 lines
107 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02:00
async function main () {
for await (const _ of (async function* () {})()) {
require(_)
}
}