mirror of
https://github.com/denoland/deno.git
synced 2024-10-30 09:08:00 -04:00
c131b8f3b6
Original: 0c3ba838fa
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;
|
|
}
|