MCPcopy Create free account
hub / github.com/tastejs/todomvc / commitUpdateEffects

Function commitUpdateEffects

examples/typescript-react/js/bundle.js:12163–12172  ·  view source on GitHub ↗
(effect, instance)

Source from the content-addressed store, hash-verified

12161}
12162
12163function commitUpdateEffects(effect, instance) {
12164 while (effect !== null) {
12165 var _callback3 = effect.callback;
12166 if (_callback3 !== null) {
12167 effect.callback = null;
12168 callCallback(_callback3, instance);
12169 }
12170 effect = effect.nextEffect;
12171 }
12172}
12173
12174function createCapturedValue(value, source) {
12175 // If the value is an error, call this function immediately after it is thrown

Callers 1

commitUpdateQueueFunction · 0.85

Calls 1

callCallbackFunction · 0.85

Tested by

no test coverage detected