vararrayFilter=require('./_arrayFilter'),stubArray=require('./stubArray');/** Used for built-in method references. */varobjectProto=Object.prototype;/** Built-in value references. */varpropertyIsEnumerable=objectProto.propertyIsEnumerable;/* Built-in method references for those with the same name as other `lodash` methods. */varnativeGetSymbols=Object.getOwnPropertySymbols;/** * Creates an array of the own enumerable symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of symbols. */vargetSymbols=!nativeGetSymbols?stubArray:function(object){if(object==null){return[];}object=Object(object);returnarrayFilter(nativeGetSymbols(object),function(symbol){returnpropertyIsEnumerable.call(object,symbol);});};module.exports=getSymbols;