* 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 ReactElement. * @final
(object)
| 980 | */ |
| 981 | |
| 982 | function isValidElement(object) { |
| 983 | return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; |
| 984 | } |
| 985 | |
| 986 | var SEPARATOR = '.'; |
| 987 | var SUBSEPARATOR = ':'; |
no outgoing calls
no test coverage detected