Security update for Core, with self-updated composer
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _getSymbols.js
1 /** Built-in value references. */
2 var getOwnPropertySymbols = Object.getOwnPropertySymbols;
3
4 /**
5  * Creates an array of the own symbol properties of `object`.
6  *
7  * @private
8  * @param {Object} object The object to query.
9  * @returns {Array} Returns the array of symbols.
10  */
11 var getSymbols = getOwnPropertySymbols || function() {
12   return [];
13 };
14
15 module.exports = getSymbols;