e14acf4a0d90dc18936b39d51b798cbbb9c7bb2194a954f1cce4694f044f6711298ab8839a705cf2aaca074a744fae727d74ae5876ca19b5538faeba275c87 330 B

12345678910111213141516
  1. var getMapData = require('./_getMapData');
  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. module.exports = mapCacheGet;