(domEventName, targetInst)
| 5554 | if ("click" === domEventName) return getInstIfValueChanged(targetInst); |
| 5555 | } |
| 5556 | function getTargetInstForInputOrChangeEvent(domEventName, targetInst) { |
| 5557 | if ("input" === domEventName || "change" === domEventName) |
| 5558 | return getInstIfValueChanged(targetInst); |
| 5559 | } |
| 5560 | function is(x, y) { |
| 5561 | return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y); |
| 5562 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…