frontend/.pnpm-store/v3/files/70/e14acf4a0d90dc18936b39d51b798cbbb9c7bb2194a954f1cce4694f044f6711298ab8839a705cf2aaca074a744fae727d74ae5876ca19b5538faeba275c87

17 lines
330 B
Plaintext

var getMapData = 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.
*/
function mapCacheGet(key) {
return getMapData(this, key).get(key);
}
module.exports = mapCacheGet;