(props)
| 4539 | var didWarnUncontrolledToControlled = false; |
| 4540 | |
| 4541 | function isControlled(props) { |
| 4542 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4543 | return usesChecked ? props.checked != null : props.value != null; |
| 4544 | } |
| 4545 | |
| 4546 | /** |
| 4547 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected