Skip to main content
Module

x/lume/deps/fs.ts>expandGlobSync

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/lume@v1.15.2/deps/fs.ts";

Synchronous version of expandGlob().

Examples

Example 1

import { expandGlobSync } from "https://deno.land/std@0.224.0/fs/expand_glob.ts";
for (const file of expandGlobSync("**\/*.ts")) {
  console.log(file);
}

Parameters

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

Returns

IterableIterator<WalkEntry>