All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._mapCacheGet.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy