Checks if a path matches a pattern with wildcards, without returning captures (case-insensitive)
The input path to match
The pattern path, may contain *, *+, **, **+ wildcards
True if the pattern matches, false otherwise
matches('hElLo/dear/WOrlD', 'hello/**+/world') // returns true Copy
matches('hElLo/dear/WOrlD', 'hello/**+/world') // returns true
Checks if a path matches a pattern with wildcards, without returning captures (case-insensitive)