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

Synchronous version of expandGlob().

Example:

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

Parameters

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

Returns

IterableIterator<WalkEntry>