Files
lodash/_cloneSymbol.js
2017-01-09 19:51:05 -08:00

16 lines
410 B
JavaScript

/** Used to convert symbols to primitives and strings. */
const symbolValueOf = Symbol.prototype.valueOf;
/**
* Creates a clone of the `symbol` object.
*
* @private
* @param {Object} symbol The symbol object to clone.
* @returns {Object} Returns the cloned symbol object.
*/
function cloneSymbol(symbol) {
return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
}
export default cloneSymbol;