CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_mapCacheClear.js22 linesDownload Raw Back to lodash-es
1import Hash from './_Hash.js';2import ListCache from './_ListCache.js';3import Map from './_Map.js';4 5/**6 * Removes all key-value entries from the map.7 *8 * @private9 * @name clear10 * @memberOf MapCache11 */12function mapCacheClear() {13  this.size = 0;14  this.__data__ = {15    'hash': new Hash,16    'map': new (Map || ListCache),17    'string': new Hash18  };19}20 21export default mapCacheClear;22 
basant307/AI_Governance_Project · CoolFace