(value: string)
| 333 | } |
| 334 | |
| 335 | function isControlCharacter(value: string): boolean { |
| 336 | if (value.length === 0) return false; |
| 337 | const code = value.charCodeAt(0); |
| 338 | return code >= 0 && code <= 31; |
| 339 | } |
| 340 | |
| 341 | function normalizeRelativePath(value: string): string { |
| 342 | return value |
no outgoing calls
no test coverage detected