Skip to main content
Module

x/drake/mod.ts>glob

Drake is a make-like task runner for Deno.
Latest
function glob
import { glob } from "https://deno.land/x/drake@v1.7.0/mod.ts";

Return a sorted array of normalized file names matching the wildcard glob patterns. Valid glob patterns are those supported by Deno's path library (see https://deno.land/std@0.152.0/path/mod.ts?s=globToRegExp). Example: glob("tmp/*.ts", "lib/*.ts", "mod.ts");

Parameters

...patterns: string[]

Returns

string[]