(parentPath: string, name: string)
| 209 | } |
| 210 | |
| 211 | const joinTreePath = (parentPath: string, name: string): string => { |
| 212 | if (!parentPath) { |
| 213 | return name; |
| 214 | } |
| 215 | return `${parentPath}/${name}`; |
| 216 | } |
| 217 | |
| 218 | const buildTreeNodeIndex = (root: FileTreeNode): Map<string, FileTreeNode> => { |
| 219 | const nodeIndex = new Map<string, FileTreeNode>(); |
no outgoing calls
no test coverage detected