(value: string)
| 138 | ]; |
| 139 | |
| 140 | function escapePythonRegex(value: string): string { |
| 141 | return value.replace(/[\\^$.*+?()[\]{}|]/g, '\\$&'); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Build a Python regex for the `-x` flag of `compileall` that skips the |
no test coverage detected