(config)
| 18536 | var specialPropRefWarningShown = void 0; |
| 18537 | |
| 18538 | function hasValidRef(config) { |
| 18539 | { |
| 18540 | if (hasOwnProperty.call(config, 'ref')) { |
| 18541 | var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; |
| 18542 | if (getter && getter.isReactWarning) { |
| 18543 | return false; |
| 18544 | } |
| 18545 | } |
| 18546 | } |
| 18547 | return config.ref !== undefined; |
| 18548 | } |
| 18549 | |
| 18550 | function hasValidKey(config) { |
| 18551 | { |
no outgoing calls
no test coverage detected