* Execute a function within a transaction
(fn: () => T)
| 415 | * Execute a function within a transaction |
| 416 | */ |
| 417 | transaction<T>(fn: () => T): T { |
| 418 | return this.db.transaction(fn)(); |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * Get database file size in bytes |
nothing calls this directly
no test coverage detected