(dir: string)
| 214 | // --------------------------------------------------------------------------- |
| 215 | |
| 216 | export function readEntry(dir: string): RegistryEntry | null { |
| 217 | ensureRegistryReady(); |
| 218 | return readEntryFile(getEntryPath(dir)); |
| 219 | } |
| 220 | |
| 221 | export function writeEntry(entry: RegistryEntry): void { |
| 222 | writeEntryFile(entry); |
no test coverage detected