Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
330 B

4 anni fa
  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;