(config)
| 18657 | var specialPropRefWarningShown = void 0; |
| 18658 | |
| 18659 | function hasValidRef(config) { |
| 18660 | { |
| 18661 | if (hasOwnProperty.call(config, 'ref')) { |
| 18662 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 18663 | if (getter && getter.isReactWarning) { |
| 18664 | return false; |
| 18665 | } |
| 18666 | } |
| 18667 | } |
| 18668 | return config.ref !== undefined; |
| 18669 | } |
| 18670 | |
| 18671 | function hasValidKey(config) { |
| 18672 | { |
no outgoing calls
no test coverage detected