function expandGlob
expandGlob(unnamed 1?: ExpandGlobOptions): AsyncIterableIterator<WalkEntry>Expand the glob string from the specified root directory and yield each
result as a WalkEntry object.
See globToRegExp() for details on supported
syntax.
Examples
Example 1
Example 1
import { expandGlob } from "@std/fs/expand_glob"; for await (const file of expandGlob("**\/*.ts")) { console.log(file); }
Parameters
optional
unnamed 1: ExpandGlobOptionsReturn Type
AsyncIterableIterator<WalkEntry>