(store: string)
| 43 | } |
| 44 | |
| 45 | function getStoreDir(store: string): string { |
| 46 | return join(getBaseDir(), store) |
| 47 | } |
| 48 | |
| 49 | function getEntryPath(store: string, key: string): string { |
| 50 | // PR-0a fix: validateKey rejects any '/' or '\' (and other unsafe chars) |
no test coverage detected