(value: string)
| 7 | } |
| 8 | |
| 9 | function stripMarkdownPathBrackets(value: string): string { |
| 10 | const trimmed = value.trim(); |
| 11 | if (trimmed.startsWith("<") && trimmed.endsWith(">")) { |
| 12 | return trimmed.slice(1, -1).trim(); |
| 13 | } |
| 14 | return trimmed; |
| 15 | } |
| 16 | |
| 17 | function normalizePathLikeLabel(value: string | undefined): string { |
| 18 | if (!value) return ""; |
no outgoing calls
no test coverage detected