* Wrap a `key` value explicitly provided by the user to distinguish it from * implicitly-generated keys generated by a component's index in its parent. * * @param {string} key Value of a user-provided `key` attribute * @return {string}
(key)
| 17598 | * @return {string} |
| 17599 | */ |
| 17600 | function wrapUserProvidedKey(key) { |
| 17601 | return '$' + escapeUserProvidedKey(key); |
| 17602 | } |
| 17603 | |
| 17604 | /** |
| 17605 | * @param {?*} children Children tree container. |
no test coverage detected
searching dependent graphs…