(value: string)
| 1 | function safeDecodeURIComponent(value: string): string { |
| 2 | try { |
| 3 | return decodeURIComponent(value); |
| 4 | } catch { |
| 5 | return value; |
| 6 | } |
| 7 | } |
| 8 | |
| 9 | function stripMarkdownPathBrackets(value: string): string { |
| 10 | const trimmed = value.trim(); |
no outgoing calls
no test coverage detected