Closed wc-matteo closed 8 years ago
Input
{1\\.2}
Output
Expected
{1.2}
I wanted to escape the dot to get this to work:
{{a,b,c},foo.bar/{a,b,c}}/**/*.baz
[ 'c', 'foo.bar/c' ]
[ 'a/**/*.baz', 'foo.bar/a/**/*.baz', 'foo.bar/b/**/*.baz', 'foo.bar/c/**/*.baz', 'b/**/*.baz', 'c/**/*.baz' ]
But why should I escape the dot? As far as I know, it doesn't carry any particular meaning in glob patterns...
Ironically I just found this bug myself while refactoring the parser. It's surprising that it hasn't been noticed before now. thanks for the issue
Input
Output
Expected
I wanted to escape the dot to get this to work:
Output
Expected
But why should I escape the dot? As far as I know, it doesn't carry any particular meaning in glob patterns...