You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					17 lines
				
				455 B
			
		
		
			
		
	
	
					17 lines
				
				455 B
			| 
								 
											4 years ago
										 
									 | 
							
								var baseGetAllKeys = require('./_baseGetAllKeys'),
							 | 
						||
| 
								 | 
							
								    getSymbols = require('./_getSymbols'),
							 | 
						||
| 
								 | 
							
								    keys = require('./keys');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Creates an array of own enumerable property names and symbols of `object`.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @private
							 | 
						||
| 
								 | 
							
								 * @param {Object} object The object to query.
							 | 
						||
| 
								 | 
							
								 * @returns {Array} Returns the array of property names and symbols.
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								function getAllKeys(object) {
							 | 
						||
| 
								 | 
							
								  return baseGetAllKeys(object, keys, getSymbols);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = getAllKeys;
							 |