(config)
| 18801 | var specialPropRefWarningShown = void 0; |
| 18802 | |
| 18803 | function hasValidRef(config) { |
| 18804 | { |
| 18805 | if (hasOwnProperty.call(config, 'ref')) { |
| 18806 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 18807 | if (getter && getter.isReactWarning) { |
| 18808 | return false; |
| 18809 | } |
| 18810 | } |
| 18811 | } |
| 18812 | return config.ref !== undefined; |
| 18813 | } |
| 18814 | |
| 18815 | function hasValidKey(config) { |
| 18816 | { |
no outgoing calls
no test coverage detected