deno.land / std@0.224.0 / fs / testdata / expand_wildcard.js
1234567import { expandGlob } from "../expand_glob.ts";
const glob = new URL("*", import.meta.url).pathname;for await (const { filename } of expandGlob(glob)) { console.log(filename);}
Version Info