summaryrefslogtreecommitdiff
path: root/std/fs/testdata/expand_wildcard.js
blob: a30a175360ea6b38deaa0a13ab6d2e20c9cd7902 (plain)
1
2
3
4
5
6
import { expandGlob } from "../expand_glob.ts";

const glob = new URL("*", import.meta.url).pathname;
for await (const { filename } of expandGlob(glob)) {
  console.log(filename);
}