()
| 2132 | } |
| 2133 | }; |
| 2134 | const startTransaction = () => { |
| 2135 | if (transactions != -1) { |
| 2136 | transactions++; |
| 2137 | } |
| 2138 | if (transactions == 1) { |
| 2139 | internalListeners[0]?.(); |
| 2140 | callListeners(startTransactionListeners); |
| 2141 | } |
| 2142 | return store; |
| 2143 | }; |
| 2144 | const getTransactionChanges = () => getTransactionChangesImpl(); |
| 2145 | const getEncodedTransactionChanges = () => getTransactionChangesImpl(true); |
| 2146 | const getTransactionLog = () => [ |
no test coverage detected
searching dependent graphs…