* Execute a function within a transaction
(fn: () => T)
| 178 | * Execute a function within a transaction |
| 179 | */ |
| 180 | transaction<T>(fn: () => T): T { |
| 181 | return this.db.transaction(fn)(); |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Get database file size in bytes |
nothing calls this directly
no test coverage detected