UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

16 lines (15 loc) 469 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** 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 Object(symbolValueOf.call(symbol)); } exports.default = cloneSymbol;