(props)
| 4481 | var didWarnUncontrolledToControlled = false; |
| 4482 | |
| 4483 | function isControlled(props) { |
| 4484 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4485 | return usesChecked ? props.checked != null : props.value != null; |
| 4486 | } |
| 4487 | |
| 4488 | /** |
| 4489 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected