(props)
| 3679 | var didWarnUncontrolledToControlled = false; |
| 3680 | |
| 3681 | function isControlled(props) { |
| 3682 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 3683 | return usesChecked ? props.checked != null : props.value != null; |
| 3684 | } |
| 3685 | |
| 3686 | /** |
| 3687 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected