(props)
| 4446 | var didWarnUncontrolledToControlled = false; |
| 4447 | |
| 4448 | function isControlled(props) { |
| 4449 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4450 | return usesChecked ? props.checked != null : props.value != null; |
| 4451 | } |
| 4452 | |
| 4453 | /** |
| 4454 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected