(props)
| 4319 | var didWarnUncontrolledToControlled = false; |
| 4320 | |
| 4321 | function isControlled(props) { |
| 4322 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4323 | return usesChecked ? props.checked != null : props.value != null; |
| 4324 | } |
| 4325 | |
| 4326 | /** |
| 4327 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected