Works with
•JSR Score70%•It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun




Published2 years ago (0.215.0)
- @std/path
glob_to_regexp
- all symbols
- default
- basename
- common
- constants
- dirname
- extname
- format
- from_file_url
- glob_to_regexp
- is_absolute
- is_glob
- join
- join_globs
- normalize
- normalize_glob
- parse
- posix/basename
- posix/common
- posix/constants
- posix/dirname
- posix/extname
- posix/format
- posix/from_file_url
- posix/glob_to_regexp
- posix/is_absolute
- posix/is_glob
- posix/join
- posix/join_globs
- posix
- posix/normalize
- posix/normalize_glob
- posix/parse
- posix/relative
- posix/resolve
- posix/to_file_url
- posix/to_namespaced_path
- relative
- resolve
- to_file_url
- to_namespaced_path
- windows/basename
- windows/common
- windows/constants
- windows/dirname
- windows/extname
- windows/format
- windows/from_file_url
- windows/glob_to_regexp
- windows/is_absolute
- windows/is_glob
- windows/join
- windows/join_globs
- windows
- windows/normalize
- windows/normalize_glob
- windows/parse
- windows/relative
- windows/resolve
- windows/to_file_url
- windows/to_namespaced_path
Functions
f
globToRegExp(): RegExp
glob: string,
options?: GlobToRegExpOptions
Convert a glob string to a regular expression.
Interfaces
I
Options for globToRegExp.
- caseInsensitive: boolean
Whether globstar should be case-insensitive.
- extended: boolean
Extended glob syntax. See https://www.linuxjournal.com/content/bash-extended-globbing.
- globstar: boolean
Globstar syntax. See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option. If false,
**is treated like*.
Type Aliases
T
GlobToRegExpOptions = GlobOptions & { os?: OSType; }
No documentation available