(path: string)
| 465 | } |
| 466 | |
| 467 | private normalizeIgnoredPath(path: string): string { |
| 468 | return normalizePath(path).replace(/^\/+/, "").replace(/\/+$/, ""); |
| 469 | } |
| 470 | |
| 471 | private normalizeIgnoredFiles(paths: string[] | undefined): string[] { |
| 472 | if (!Array.isArray(paths)) { |
no test coverage detected