1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-16 19:04:02 -05:00
denoland-deno/fs/glob.ts

7 lines
200 B
TypeScript
Raw Normal View History

import { FileInfo } from "deno";
import { globrex, GlobOptions } from "./globrex.ts";
export function glob(glob: string, options: GlobOptions = {}): RegExp {
return globrex(glob, options).regex;
}