glob-to-regexp icon indicating copy to clipboard operation
glob-to-regexp copied to clipboard

* not handled inside of character groups

Open vapier opened this issue 4 years ago • 0 comments

# Bad behavior.
> globToRegExp('fo[oO*]bar', {extended: true})
/^fo[oO.*]bar$/

# Expected result:
/^fo[oO*]bar$/

vapier avatar Apr 26 '20 23:04 vapier