MCPcopy Index your code
hub / github.com/caseywebdev/react-list / rerenderDeferredValue

Function rerenderDeferredValue

docs/index.js:25552–25562  ·  view source on GitHub ↗
(value, initialValue)

Source from the content-addressed store, hash-verified

25550 );
25551 }
25552 function rerenderDeferredValue(value, initialValue) {
25553 var hook = updateWorkInProgressHook();
25554 return null === currentHook
25555 ? mountDeferredValueImpl(hook, value, initialValue)
25556 : updateDeferredValueImpl(
25557 hook,
25558 currentHook.memoizedState,
25559 value,
25560 initialValue
25561 );
25562 }
25563 function mountDeferredValueImpl(hook, value, initialValue) {
25564 if (void 0 === initialValue || 0 !== (renderLanes & 1073741824))
25565 return (hook.memoizedState = value);

Callers 1

index.jsFile · 0.85

Calls 3

updateWorkInProgressHookFunction · 0.85
mountDeferredValueImplFunction · 0.85
updateDeferredValueImplFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…