Globbing Module
Functions and values
| Function or value |
Description
|
Full Usage:
currencyDiff expected actual
Parameters:
string
actual : string
Returns: string list
|
DiffPlex-based generation-currency diff: the lines that differ between the `expected` (regenerated) text and the `actual` (on-disk) text. An empty list means the on-disk artifact is current.
|
Full Usage:
discover root globs
Parameters:
string
globs : string list
Returns: string list
|
Recursively enumerate files under `root` whose `/`-normalized path (relative to `root`) matches any of `globs`. Returns relative paths in deterministic (sorted) order.
|
Full Usage:
isMatch glob path
Parameters:
string
path : string
Returns: bool
|
fnmatch-style match: `**` crosses `/`, `*` and `?` stay within a single path segment, and both inputs are `/`-normalized before matching.
|