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
						
					
					
						
							400 B
						
					
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							400 B
						
					
					
				var isKeyable = require('./_isKeyable');
 | 
						|
 | 
						|
/**
 | 
						|
 * Gets the data for `map`.
 | 
						|
 *
 | 
						|
 * @private
 | 
						|
 * @param {Object} map The map to query.
 | 
						|
 * @param {string} key The reference key.
 | 
						|
 * @returns {*} Returns the map data.
 | 
						|
 */
 | 
						|
function getMapData(map, key) {
 | 
						|
  var data = map.__data__;
 | 
						|
  return isKeyable(key)
 | 
						|
    ? data[typeof key == 'string' ? 'string' : 'hash']
 | 
						|
    : data.map;
 | 
						|
}
 | 
						|
 | 
						|
module.exports = getMapData;
 |