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

6 lines
107 B
JavaScript
Raw Normal View History

2022-10-28 17:20:35 -05:00
async function main () {
for await (const _ of (async function* () {})()) {
require(_)
}
}