* 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)
| 18282 | * @final |
| 18283 | */ |
| 18284 | function isValidElement(object) { |
| 18285 | return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; |
| 18286 | } |
| 18287 | |
| 18288 | var ReactDebugCurrentFrame = {}; |
| 18289 |
no outgoing calls
no test coverage detected