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
						
					
					
						
							329 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							329 B
						
					
					
				| define(['./keys'], function (keys) {
 | |
| 
 | |
|   // Retrieve the values of an object's properties.
 | |
|   function values(obj) {
 | |
|     var _keys = keys(obj);
 | |
|     var length = _keys.length;
 | |
|     var values = Array(length);
 | |
|     for (var i = 0; i < length; i++) {
 | |
|       values[i] = obj[_keys[i]];
 | |
|     }
 | |
|     return values;
 | |
|   }
 | |
| 
 | |
|   return values;
 | |
| 
 | |
| });
 |