(props)
| 4584 | var didWarnUncontrolledToControlled = false; |
| 4585 | |
| 4586 | function isControlled(props) { |
| 4587 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4588 | return usesChecked ? props.checked != null : props.value != null; |
| 4589 | } |
| 4590 | |
| 4591 | /** |
| 4592 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected