(element, index)
| 154 | } |
| 155 | var userProvidedKeyEscapeRegex = /\/+/g; |
| 156 | function getElementKey(element, index) { |
| 157 | return "object" === typeof element && null !== element && null != element.key |
| 158 | ? escape("" + element.key) |
| 159 | : index.toString(36); |
| 160 | } |
| 161 | function noop$1() {} |
| 162 | function resolveThenable(thenable) { |
| 163 | switch (thenable.status) { |
no test coverage detected
searching dependent graphs…