varassocIndexOf=require('./_assocIndexOf');/** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */functionlistCacheGet(key){vardata=this.__data__,index=assocIndexOf(data,key);returnindex<0?undefined:data[index][1];}module.exports=listCacheGet;