(fullPath: string)
| 80 | } |
| 81 | |
| 82 | private toRelativePath(fullPath: string): string { |
| 83 | // Take last 4 path segments for readability |
| 84 | const parts = fullPath.replace(/\\/g, '/').split('/'); |
| 85 | return parts.slice(-4).join('/'); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Find all files that import a given source |
no outgoing calls
no test coverage detected