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.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							483 B
						
					
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							483 B
						
					
					
				define(['./_cb', './each'], function (_cb, each) {
 | 
						|
 | 
						|
  // An internal function used for aggregate "group by" operations.
 | 
						|
  function group(behavior, partition) {
 | 
						|
    return function(obj, iteratee, context) {
 | 
						|
      var result = partition ? [[], []] : {};
 | 
						|
      iteratee = _cb(iteratee, context);
 | 
						|
      each(obj, function(value, index) {
 | 
						|
        var key = iteratee(value, index, obj);
 | 
						|
        behavior(result, value, key);
 | 
						|
      });
 | 
						|
      return result;
 | 
						|
    };
 | 
						|
  }
 | 
						|
 | 
						|
  return group;
 | 
						|
 | 
						|
});
 |