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

Function createAndAccumulateChangeEvent

code/redux/public/app.js:4933–4940  ·  view source on GitHub ↗
(inst, nativeEvent, target)

Source from the content-addressed store, hash-verified

4931};
4932
4933function createAndAccumulateChangeEvent(inst, nativeEvent, target) {
4934 var event = SyntheticEvent$1.getPooled(eventTypes$1.change, inst, nativeEvent, target);
4935 event.type = 'change';
4936 // Flag this event loop as needing state restore.
4937 enqueueStateRestore(target);
4938 accumulateTwoPhaseDispatches(event);
4939 return event;
4940}
4941/**
4942 * For IE shims
4943 */

Callers 2

app.jsFile · 0.70

Calls 2

enqueueStateRestoreFunction · 0.70

Tested by

no test coverage detected