(filePath: string)
| 486 | } |
| 487 | |
| 488 | function normalizePackagePath(filePath: string): string { |
| 489 | return normalizePathName(filePath).replace(/^\.\//, "./") |
| 490 | } |
| 491 | |
| 492 | function escapeRegExp(value: string): string { |
| 493 | return value.replace(/[|\\{}()[\]^$+?.]/g, "\\$&") |
no test coverage detected