(dbPath, { readonly = false } = {})
| 262 | } |
| 263 | |
| 264 | export function openSessionDb(dbPath, { readonly = false } = {}) { |
| 265 | return new DatabaseSync(dbPath, { readOnly: readonly }) |
| 266 | } |
| 267 | |
| 268 | export function closeSessionDb(db) { |
| 269 | try { |
no outgoing calls
no test coverage detected