vargetMapData=require('./_getMapData');/**
* Gets the map value for `key`.
*
* @private
* @name get
* @memberOf MapCache
* @param {string} key The key of the value to get.
* @returns {*} Returns the entry value.
*/functionmapCacheGet(key){returngetMapData(this,key).get(key);}module.exports=mapCacheGet;