mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
8 lines
215 B
JavaScript
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);
|
|
}
|