Skip to main content
Module

x/dax/src/deps.ts>expandGlobSync

Cross-platform shell tools for Deno and Node.js inspired by zx.
Extremely Popular
Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/dax@0.39.2/src/deps.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>