()
| 539 | * Resets the previous global effect tracking state. |
| 540 | */ |
| 541 | export function resetTracking(): void { |
| 542 | const last = trackStack.pop() |
| 543 | shouldTrack = last === undefined ? true : last |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * Registers a cleanup function for the current active effect. |
no outgoing calls
no test coverage detected