* Verifies the object is a ReactElement. * See https://reactjs.org/docs/react-api.html#isvalidelement * @param {?object} object * @return {boolean} True if `object` is a valid component. * @final
(object)
| 18313 | * @final |
| 18314 | */ |
| 18315 | function isValidElement(object) { |
| 18316 | return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; |
| 18317 | } |
| 18318 | |
| 18319 | var ReactDebugCurrentFrame = {}; |
| 18320 |
no outgoing calls
no test coverage detected