All files / fs / testdata / expand_wildcard.js

50.00% Branches 1/2
100.00% Functions 0/0
62.50% Lines 5/8
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);
}