mirror of
https://github.com/denoland/deno.git
synced 2025-01-15 18:38:53 -05:00
6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
import { FileInfo } from "deno";
|
|
import { globrex, GlobOptions } from "./globrex.ts";
|
|
|
|
export function glob(glob: string, options: GlobOptions = {}): RegExp {
|
|
return globrex(glob, options).regex;
|
|
}
|