(basePath: string, ...segments: string[])
| 71 | } |
| 72 | |
| 73 | function joinStorePath(basePath: string, ...segments: string[]): string { |
| 74 | return FileSystemUtils.joinPath(basePath, ...segments); |
| 75 | } |
| 76 | |
| 77 | export function getStoresDir(options: StorePathOptions = {}): string { |
| 78 | return joinStorePath(options.globalDataDir ?? getGlobalDataDir(), STORES_DIR_NAME); |
no test coverage detected