MCPcopy Create free account
hub / github.com/Nynxz/ComfyUI-IdeogramHelper / pauseTracking

Function pauseTracking

web/main.js:641–644  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

639let shouldTrack = true;
640const trackStack = [];
641function pauseTracking() {
642 trackStack.push(shouldTrack);
643 shouldTrack = false;
644}
645function resetTracking() {
646 const last = trackStack.pop();
647 shouldTrack = last === void 0 ? true : last;

Callers 10

noTrackingFunction · 0.85
watch$1Function · 0.85
warn$1Function · 0.85
handleErrorFunction · 0.85
invokeDirectiveHookFunction · 0.85
injectHookFunction · 0.85
updateComponentPreRenderFunction · 0.85
unmountFunction · 0.85
setupStatefulComponentFunction · 0.85
finishComponentSetupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected