Skip to main content
Module

std/fs/testdata/expand_wildcard.js

The Deno Standard Library
Latest
File
import { expandGlob } from "../expand_glob.ts";
const glob = new URL("*", import.meta.url).pathname;for await (const { filename } of expandGlob(glob)) { console.log(filename);}