(action: () => Return)
| 334 | getListenerFunctions(() => store); |
| 335 | |
| 336 | const whileMutating = <Return>(action: () => Return): Return => { |
| 337 | const wasMutating = mutating; |
| 338 | mutating = 1; |
| 339 | const result = action(); |
| 340 | mutating = wasMutating; |
| 341 | return result; |
| 342 | }; |
| 343 | |
| 344 | const ifTransformed = <Value, Result>( |
| 345 | snapshot: Value, |
no outgoing calls
no test coverage detected
searching dependent graphs…