(workspaceDir, absolutePath)
| 389 | } |
| 390 | |
| 391 | function toWorkspaceRelative(workspaceDir, absolutePath) { |
| 392 | const relative = path.relative(workspaceDir, absolutePath) |
| 393 | return relative || '.' |
| 394 | } |
| 395 | |
| 396 | function truncateText(text) { |
| 397 | if (typeof text !== 'string') { |
no outgoing calls
no test coverage detected