MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / flushInteractiveUpdates

Function flushInteractiveUpdates

code/composition/public/app.js:14117–14123  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14115 }
14116
14117 function flushInteractiveUpdates() {
14118 if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) {
14119 // Synchronously flush pending interactive updates.
14120 performWork(lowestPendingInteractiveExpirationTime, false, null);
14121 lowestPendingInteractiveExpirationTime = NoWork;
14122 }
14123 }
14124
14125 function flushControlled(fn) {
14126 var previousIsBatchingUpdates = isBatchingUpdates;

Callers

nothing calls this directly

Calls 1

performWorkFunction · 0.70

Tested by

no test coverage detected