(object)
| 824 | * @final |
| 825 | */ |
| 826 | export function isValidElement(object) { |
| 827 | return ( |
| 828 | typeof object === 'object' && |
| 829 | object !== null && |
| 830 | object.$$typeof === REACT_ELEMENT_TYPE |
| 831 | ); |
| 832 | } |
| 833 | |
| 834 | export function isLazyType(object) { |
| 835 | return ( |
no outgoing calls
no test coverage detected