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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							755 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							755 B
						
					
					
				'use strict'; | 
						|
var $ = require('../internals/export'); | 
						|
var iterate = require('../internals/iterate'); | 
						|
var aFunction = require('../internals/a-function'); | 
						|
 | 
						|
// `Map.groupBy` method | 
						|
// https://github.com/tc39/proposal-collection-methods | 
						|
$({ target: 'Map', stat: true }, { | 
						|
  groupBy: function groupBy(iterable, keyDerivative) { | 
						|
    var newMap = new this(); | 
						|
    aFunction(keyDerivative); | 
						|
    var has = aFunction(newMap.has); | 
						|
    var get = aFunction(newMap.get); | 
						|
    var set = aFunction(newMap.set); | 
						|
    iterate(iterable, function (element) { | 
						|
      var derivedKey = keyDerivative(element); | 
						|
      if (!has.call(newMap, derivedKey)) set.call(newMap, derivedKey, [element]); | 
						|
      else get.call(newMap, derivedKey).push(element); | 
						|
    }); | 
						|
    return newMap; | 
						|
  } | 
						|
});
 | 
						|
 |