mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-27 21:14:21 +01:00
Fixes #577 With the previous implementation we weren't escaping the regex meta characters . And in certain cases glob had a different meaning than regex. For e.g , the below shows a glob pattern with its regex equivalent - `[][]` translates to `[\]\[]` - `[^][]` translates to `[^\]\[]` Closes #578