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

std/fs/mod.ts>expandGlobSync

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function expandGlobSync
import { expandGlobSync } from "https://deno.land/std@0.135.0/fs/mod.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>