()
| 12 | const transactions = new Map() |
| 13 | |
| 14 | function getCurrentTransaction () { |
| 15 | const asyncId = executionAsyncId() |
| 16 | return transactions.has(asyncId) ? transactions.get(asyncId) : null |
| 17 | } |
| 18 | |
| 19 | function setCurrentTransaction (trans) { |
| 20 | const asyncId = executionAsyncId() |
no test coverage detected