Files
knaeckeboot-eu/themes/bluewater/node_modules/detective/test/files/for-await.js
T
Konstantin Kollar 8529ee86e4 Initial commit
2022-10-03 21:13:35 +02:00

6 lines
107 B
JavaScript

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