(path: string, fileTree: FileTree)
| 85 | }; |
| 86 | |
| 87 | export const isFolder = (path: string, fileTree: FileTree) => { |
| 88 | const content = getFileContent(path, fileTree); |
| 89 | return typeof content === "object"; |
| 90 | }; |
| 91 | |
| 92 | export const traverse = ( |
| 93 | fileTree: FileTree, |
no test coverage detected