mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +00:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
		
			255 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			255 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | /** | ||
|  |  * Creates a map of ids to entity | ||
|  |  * @param {Array} entities = [] list of entities to map to ids | ||
|  |  */ | ||
|  | export default (entities = []) => | ||
|  |   entities.reduce( | ||
|  |     (idMap, entity) => { | ||
|  |       idMap[entity.id] = entity; | ||
|  |       return idMap; | ||
|  |     }, | ||
|  |     {} | ||
|  |   ); |