(priority, fn)
| 4299 | return void 0 === updatePriority ? 32 : getEventPriority(updatePriority.type); |
| 4300 | } |
| 4301 | function runWithPriority(priority, fn) { |
| 4302 | var previousPriority = ReactDOMSharedInternals.p; |
| 4303 | try { |
| 4304 | return (ReactDOMSharedInternals.p = priority), fn(); |
| 4305 | } finally { |
| 4306 | ReactDOMSharedInternals.p = previousPriority; |
| 4307 | } |
| 4308 | } |
| 4309 | var randomKey = Math.random().toString(36).slice(2), |
| 4310 | internalInstanceKey = "__reactFiber$" + randomKey, |
| 4311 | internalPropsKey = "__reactProps$" + randomKey, |
no outgoing calls
no test coverage detected
searching dependent graphs…