CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_mapCacheGet.js17 linesDownload Raw Back to lodash
1var getMapData = require('./_getMapData');2 3/**4 * Gets the map value for `key`.5 *6 * @private7 * @name get8 * @memberOf MapCache9 * @param {string} key The key of the value to get.10 * @returns {*} Returns the entry value.11 */12function mapCacheGet(key) {13  return getMapData(this, key).get(key);14}15 16module.exports = mapCacheGet;17 
basant307/AI_Governance_Project · CoolFace