Skip to main content
Module

std/fs/mod.ts>expandGlobSync

Deno standard library
Go to Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/std@0.69.0/fs/mod.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>