Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/frugal/doc/dep/std/fs.ts>expandGlobSync

A frugal web framework
Go to Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/frugal@0.9.0/doc/dep/std/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>