(options: WorksetPathOptions = {})
| 61 | } |
| 62 | |
| 63 | export function getWorksetsDir(options: WorksetPathOptions = {}): string { |
| 64 | return FileSystemUtils.joinPath( |
| 65 | options.globalDataDir ?? getGlobalDataDir(), |
| 66 | WORKSETS_DIR_NAME |
| 67 | ); |
| 68 | } |
| 69 | |
| 70 | export function getWorksetsFilePath(options: WorksetPathOptions = {}): string { |
| 71 | return FileSystemUtils.joinPath(getWorksetsDir(options), WORKSETS_FILE_NAME); |
no test coverage detected