* Execute a function within a transaction
(fn: () => T)
| 448 | * Execute a function within a transaction |
| 449 | */ |
| 450 | transaction<T>(fn: () => T): T { |
| 451 | return this.db.transaction(fn)(); |
| 452 | } |
| 453 | |
| 454 | /** |
| 455 | * Get database file size in bytes |
nothing calls this directly
no test coverage detected