Skip to main content
Module

x/gustwind/server-deps.ts>fs.expandGlobSync

🐳💨 – Deno powered JSON oriented site generator
Go to Latest
function fs.expandGlobSync
import { fs } from "https://deno.land/x/gustwind@v0.32.2-alpha.3/server-deps.ts";
const { expandGlobSync } = fs;

Synchronous version of expandGlob().

Example:

     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>