minter-js-sdk
Version:
JS SDK for Minter Blockchain
19 lines (15 loc) • 350 B
JavaScript
;
var _getMapData = require('./_getMapData.js');
/**
* 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;