blob: 1031bd75d5d4dbfdfbb8d9007075513ebd0b26f0 (
plain)
1
2
3
4
5
6
|
import { FileInfo } from "deno";
import { globrex, GlobOptions } from "./globrex.ts";
export function glob(glob: string, options: GlobOptions = {}): RegExp {
return globrex(glob, options).regex;
}
|