()
| 31 | * Get the store instance. Lazily initializes on first access. |
| 32 | */ |
| 33 | export function getStore(): AFSStore { |
| 34 | if (!_store) { |
| 35 | _store = initializeStore(); |
| 36 | } |
| 37 | return _store; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Initialize the store. Tries SQLite first, falls back to in-memory. |
no test coverage detected
searching dependent graphs…