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

6 lines
107 B
JavaScript
Raw Normal View History

2024-05-03 04:39:20 +00:00
async function main () {
for await (const _ of (async function* () {})()) {
require(_)
}
}