Urara-Blog/node_modules/.pnpm-store/v3/files/cd/a4208640952a1844b1f932480fef66060e5587ee96bf36eaec69c07acc45d7adc96d6bc6a5492d60556822649c0cd0f40be44174cf1076ccc860818283196f
2022-08-14 01:14:53 +08:00

25 lines
754 B
Text

var arrayPush = require('./_arrayPush'),
getPrototype = require('./_getPrototype'),
getSymbols = require('./_getSymbols'),
stubArray = require('./stubArray');
/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeGetSymbols = Object.getOwnPropertySymbols;
/**
* Creates an array of the own and inherited enumerable symbols of `object`.
*
* @private
* @param {Object} object The object to query.
* @returns {Array} Returns the array of symbols.
*/
var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {
var result = [];
while (object) {
arrayPush(result, getSymbols(object));
object = getPrototype(object);
}
return result;
};
module.exports = getSymbolsIn;