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