(userId: string)
| 25 | |
| 26 | // Step 3: User Cache Directory |
| 27 | export const getUserCacheDir = (userId: string): string => { |
| 28 | const hashedUserId = hashUserId(userId); |
| 29 | return ensureDir(path.join(getCacheDir(), hashedUserId)); |
| 30 | }; |
| 31 | |
| 32 | // Step 4: Project Cache Directory within a User's Directory |
| 33 | export const getProjectCacheDir = ( |
no test coverage detected