0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-30 09:08:00 -04:00
denoland-deno/fs/glob.ts
2019-03-02 14:56:19 -05:00

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;
}