00001 var assocIndexOf = require('./_assocIndexOf');
00002
00012 function listCacheGet(key) {
00013 var data = this.__data__,
00014 index = assocIndexOf(data, key);
00015
00016 return index < 0 ? undefined : data[index][1];
00017 }
00018
00019 module.exports = listCacheGet;