(filePath: string)
| 482 | } |
| 483 | |
| 484 | function normalizePathName(filePath: string): string { |
| 485 | return filePath.replaceAll(path.sep, "/") |
| 486 | } |
| 487 | |
| 488 | function normalizePackagePath(filePath: string): string { |
| 489 | return normalizePathName(filePath).replace(/^\.\//, "./") |
no outgoing calls
no test coverage detected