(name: string, rawPath: string)
| 42 | } |
| 43 | |
| 44 | function createNode(name: string, rawPath: string): PathTreeNode { |
| 45 | return { name, rawPath, children: new Map() }; |
| 46 | } |
| 47 | |
| 48 | function childRawPath(parentRawPath: string, component: string): string { |
| 49 | if (component === '/') { |
no outgoing calls
no test coverage detected