()
| 289 | } |
| 290 | |
| 291 | function createItxScopeId(): string { |
| 292 | return typeof globalThis.crypto?.randomUUID === 'function' |
| 293 | ? globalThis.crypto.randomUUID() |
| 294 | : `${Date.now()}-${Math.random().toString(16).slice(2)}` |
| 295 | } |
| 296 | |
| 297 | const BatchTxIdCounter = { |
| 298 | id: 0, |
no test coverage detected