mirror of
				https://github.com/taixingyiji/openit.git
				synced 2025-11-04 04:32:24 +00:00 
			
		
		
		
	2022.07.20 16:18:09 更新订阅
This commit is contained in:
		
							
								
								
									
										18
									
								
								utils/rm/node_modules/lodash/_cloneSymbol.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								utils/rm/node_modules/lodash/_cloneSymbol.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
var Symbol = require('./_Symbol');
 | 
			
		||||
 | 
			
		||||
/** Used to convert symbols to primitives and strings. */
 | 
			
		||||
var symbolProto = Symbol ? Symbol.prototype : undefined,
 | 
			
		||||
    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 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)) : {};
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
module.exports = cloneSymbol;
 | 
			
		||||
		Reference in New Issue
	
	Block a user