(store)
| 168 | } |
| 169 | |
| 170 | async function writeSecretStore(store) { |
| 171 | await ensureUserDataDir() |
| 172 | await writeFile(secretStorePath(), JSON.stringify(store, null, 2), 'utf8') |
| 173 | } |
| 174 | |
| 175 | function encodeSecret(value) { |
| 176 | if (!value) { |
no test coverage detected