1 2 3 4 5 6 7 |
x1 x1 x1 x1 |
I
|
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);
}
|