* Creates a clone of the `symbol` object. * * @private * @param {Object} symbol The symbol object to clone. * @returns {Object} Returns the cloned symbol object.
(symbol)
| 52352 | * @returns {Object} Returns the cloned symbol object. |
| 52353 | */ |
| 52354 | function cloneSymbol(symbol) { |
| 52355 | return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; |
| 52356 | } |
| 52357 | |
| 52358 | module.exports = cloneSymbol; |
| 52359 |