82cbbfc1b3a71cd0e92eab1112ba7a3d799365b80394ca723b5c61dcfc5b8703ce2f115dba57d4f5dc84a2844ab5b6f454b719b63c591572ca04795609a302 328 B

12345678910111213141516
  1. import getMapData from './_getMapData.js';
  2. /**
  3. * Gets the map value for `key`.
  4. *
  5. * @private
  6. * @name get
  7. * @memberOf MapCache
  8. * @param {string} key The key of the value to get.
  9. * @returns {*} Returns the entry value.
  10. */
  11. function mapCacheGet(key) {
  12. return getMapData(this, key).get(key);
  13. }
  14. export default mapCacheGet;