Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/snel/imports/fs.ts>expandGlobSync

A Cybernetical framework for svelte applications in deno
Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/snel@v0.7.1/imports/fs.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>