Urara-Blog/node_modules/.pnpm-store/v3/files/70/e14acf4a0d90dc18936b39d51b798cbbb9c7bb2194a954f1cce4694f044f6711298ab8839a705cf2aaca074a744fae727d74ae5876ca19b5538faeba275c87
2022-08-14 01:14:53 +08:00

16 lines
330 B
Text

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;