Skip to main content
Go to Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/std@0.61.0/fs/expand_glob.ts";

Synchronous version of expandGlob().

Examples:

for (const file of expandGlobSync("**\/*.ts")) {
  console.log(file);
}

Parameters

glob: string
optional
unnamed 1: ExpandGlobOptions = [UNSUPPORTED]

Returns

IterableIterator<WalkEntry>