UNPKG

minter-js-sdk

Version:
19 lines (15 loc) 350 B
'use strict'; 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;