(config)
| 18698 | var specialPropRefWarningShown = void 0; |
| 18699 | |
| 18700 | function hasValidRef(config) { |
| 18701 | { |
| 18702 | if (hasOwnProperty.call(config, 'ref')) { |
| 18703 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 18704 | if (getter && getter.isReactWarning) { |
| 18705 | return false; |
| 18706 | } |
| 18707 | } |
| 18708 | } |
| 18709 | return config.ref !== undefined; |
| 18710 | } |
| 18711 | |
| 18712 | function hasValidKey(config) { |
| 18713 | { |
no outgoing calls
no test coverage detected