266906a027fe3ab9026f6eb83cafc6a8977721fd
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / 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;