2016-10-10 03:43:44 +02:00
|
|
|
var overArg = require('./_overArg'),
|
|
|
|
stubArray = require('./stubArray');
|
|
|
|
|
|
|
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
|
|
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
|
|
|
|
|
|
|
/**
|
2016-11-16 01:59:39 +01:00
|
|
|
* Creates an array of the own enumerable symbols of `object`.
|
2016-10-10 03:43:44 +02:00
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @param {Object} object The object to query.
|
|
|
|
* @returns {Array} Returns the array of symbols.
|
|
|
|
*/
|
|
|
|
var getSymbols = nativeGetSymbols ? overArg(nativeGetSymbols, Object) : stubArray;
|
|
|
|
|
|
|
|
module.exports = getSymbols;
|