(oldElement, newKey)
| 127 | }; |
| 128 | } |
| 129 | function cloneAndReplaceKey(oldElement, newKey) { |
| 130 | return ReactElement( |
| 131 | oldElement.type, |
| 132 | newKey, |
| 133 | void 0, |
| 134 | void 0, |
| 135 | void 0, |
| 136 | oldElement.props |
| 137 | ); |
| 138 | } |
| 139 | function isValidElement(object) { |
| 140 | return ( |
| 141 | "object" === typeof object && |
no test coverage detected
searching dependent graphs…