* 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)
| 17040 | * @return {string} |
| 17041 | */ |
| 17042 | function wrapUserProvidedKey(key) { |
| 17043 | return '$' + escapeUserProvidedKey(key); |
| 17044 | } |
| 17045 | |
| 17046 | /** |
| 17047 | * @param {?*} children Children tree container. |
no test coverage detected