mirror of
https://github.com/denoland/deno.git
synced 2025-01-16 19:04:02 -05:00
7 lines
200 B
TypeScript
7 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;
|
||
|
}
|