(value: string)
| 319 | } |
| 320 | |
| 321 | function normalizeSymbolName(value: string): string { |
| 322 | return value.trim().toLowerCase(); |
| 323 | } |
| 324 | |
| 325 | function pathsMatch(a: string, b: string): boolean { |
| 326 | return a === b || a.endsWith(b) || b.endsWith(a); |
no outgoing calls
no test coverage detected