(path: string)
| 1 | function normalizeVaultPath(path: string): string { |
| 2 | return path.replace(/\\/g, "/").replace(/^\/+/, "").replace(/\/+$/, ""); |
| 3 | } |
| 4 | |
| 5 | export function parseExcludedFolders( |
| 6 | excludedFolders: string | string[] | null | undefined |
no outgoing calls
no test coverage detected