* 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)
| 18276 | * @final |
| 18277 | */ |
| 18278 | function isValidElement(object) { |
| 18279 | return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; |
| 18280 | } |
| 18281 | |
| 18282 | var ReactDebugCurrentFrame = {}; |
| 18283 |
no outgoing calls
no test coverage detected