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.
		
		
		
		
		
			
		
			
				
					11 lines
				
				409 B
			
		
		
			
		
	
	
					11 lines
				
				409 B
			| 
											3 years ago
										 | // all object keys, includes non-enumerable and symbols
 | ||
|  | var gOPN = require('./_object-gopn'); | ||
|  | var gOPS = require('./_object-gops'); | ||
|  | var anObject = require('./_an-object'); | ||
|  | var Reflect = require('./_global').Reflect; | ||
|  | module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { | ||
|  |   var keys = gOPN.f(anObject(it)); | ||
|  |   var getSymbols = gOPS.f; | ||
|  |   return getSymbols ? keys.concat(getSymbols(it)) : keys; | ||
|  | }; |