Skip to main content
Module

x/servest/vendor/https/deno.land/std/fs/expand_glob.ts>expandGlobSync

🌾A progressive http server for Deno🌾
Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/servest@v1.3.4/vendor/https/deno.land/std/fs/expand_glob.ts";

Synchronous version of expandGlob().

Example:

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

Parameters

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

Returns

IterableIterator<WalkEntry>