(path: string, tree: RepoTree)
| 80 | } |
| 81 | |
| 82 | function deleteFile(path: string, tree: RepoTree) { |
| 83 | unset(tree, path.split('/')); |
| 84 | } |
| 85 | |
| 86 | function moveFile(path: string, newPath: string, tree: RepoTree, hasSubfolders: boolean) { |
| 87 | const sourceDir = dirname(path); |
no outgoing calls
no test coverage detected