(config)
| 18024 | var specialPropRefWarningShown = void 0; |
| 18025 | |
| 18026 | function hasValidRef(config) { |
| 18027 | { |
| 18028 | if (hasOwnProperty.call(config, 'ref')) { |
| 18029 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 18030 | if (getter && getter.isReactWarning) { |
| 18031 | return false; |
| 18032 | } |
| 18033 | } |
| 18034 | } |
| 18035 | return config.ref !== undefined; |
| 18036 | } |
| 18037 | |
| 18038 | function hasValidKey(config) { |
| 18039 | { |
no outgoing calls
no test coverage detected