source: imaps-frontend/node_modules/lodash/_getSymbols.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 886 bytes
Line 
1var arrayFilter = require('./_arrayFilter'),
2 stubArray = require('./stubArray');
3
4/** Used for built-in method references. */
5var objectProto = Object.prototype;
6
7/** Built-in value references. */
8var propertyIsEnumerable = objectProto.propertyIsEnumerable;
9
10/* Built-in method references for those with the same name as other `lodash` methods. */
11var nativeGetSymbols = Object.getOwnPropertySymbols;
12
13/**
14 * Creates an array of the own enumerable symbols of `object`.
15 *
16 * @private
17 * @param {Object} object The object to query.
18 * @returns {Array} Returns the array of symbols.
19 */
20var getSymbols = !nativeGetSymbols ? stubArray : function(object) {
21 if (object == null) {
22 return [];
23 }
24 object = Object(object);
25 return arrayFilter(nativeGetSymbols(object), function(symbol) {
26 return propertyIsEnumerable.call(object, symbol);
27 });
28};
29
30module.exports = getSymbols;
Note: See TracBrowser for help on using the repository browser.