(props)
| 3807 | var didWarnUncontrolledToControlled = false; |
| 3808 | |
| 3809 | function isControlled(props) { |
| 3810 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 3811 | return usesChecked ? props.checked != null : props.value != null; |
| 3812 | } |
| 3813 | |
| 3814 | /** |
| 3815 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected