(config)
| 17896 | var specialPropRefWarningShown = void 0; |
| 17897 | |
| 17898 | function hasValidRef(config) { |
| 17899 | { |
| 17900 | if (hasOwnProperty.call(config, 'ref')) { |
| 17901 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 17902 | if (getter && getter.isReactWarning) { |
| 17903 | return false; |
| 17904 | } |
| 17905 | } |
| 17906 | } |
| 17907 | return config.ref !== undefined; |
| 17908 | } |
| 17909 | |
| 17910 | function hasValidKey(config) { |
| 17911 | { |
no outgoing calls
no test coverage detected