import { glob } from 'node:fs/promises';for await (const entry of glob('*.js')) console.log(entry); Copy
import { glob } from 'node:fs/promises';for await (const entry of glob('*.js')) console.log(entry);
An AsyncIterator that yields the paths of files that match the pattern.
v22.0.0