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

x/actionify/config/deps.ts>expandGlobSync

Create and manage your GitHub workflows with TypeScript and Deno.
Go to Latest
function expandGlobSync
import { expandGlobSync } from "https://deno.land/x/actionify@0.2.0/config/deps.ts";

Synchronous version of expandGlob().

Example:

     import { expandGlobSync } from "./expand_glob.ts";
     for (const file of expandGlobSync("**\/*.ts")) {
       console.log(file);
     }

Parameters

glob: string | URL
optional
unnamed 1: ExpandGlobOptions = [UNSUPPORTED]

Returns

IterableIterator<WalkEntry>