()
| 29 | * instrumented pool (any `db.transaction(...)` / `sql.begin(...)`). |
| 30 | */ |
| 31 | export function isInsideDbTransaction(): boolean { |
| 32 | return transactionContext.getStore() === true |
| 33 | } |
| 34 | |
| 35 | function isThenable(value: unknown): value is PromiseLike<unknown> { |
| 36 | return ( |
no test coverage detected