std/fs/testdata/expand_wildcard.js
2024-09-13 15:43:13 +10:00

8 lines
215 B
JavaScript

import { expandGlob } from "../expand_glob.ts";
const glob = new URL("*", import.meta.url).pathname;
for await (const { filename } of expandGlob(glob)) {
// deno-lint-ignore no-console
console.log(filename);
}