* 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)
| 18185 | * @final |
| 18186 | */ |
| 18187 | function isValidElement(object) { |
| 18188 | return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; |
| 18189 | } |
| 18190 | |
| 18191 | var ReactDebugCurrentFrame = {}; |
| 18192 |
no outgoing calls
no test coverage detected