(props)
| 4697 | var didWarnUncontrolledToControlled = false; |
| 4698 | |
| 4699 | function isControlled(props) { |
| 4700 | var usesChecked = props.type === 'checkbox' || props.type === 'radio'; |
| 4701 | return usesChecked ? props.checked != null : props.value != null; |
| 4702 | } |
| 4703 | |
| 4704 | /** |
| 4705 | * Implements an <input> host component that allows setting these optional |
no outgoing calls
no test coverage detected