(path: string)
| 39 | |
| 40 | |
| 41 | export const folderPathToString = (path: string) => removeLeadingSlash(path.substring(path.lastIndexOf("/"))) || path; |
| 42 | export const getParentFolderPaths = (path: string): string[] => { |
| 43 | const folderPaths: string[] = []; |
| 44 | const parts: string[] = path.split("/"); |
no test coverage detected