var listCacheClear = ,
listCacheDelete = ,
listCacheGet = ,
listCacheHas = ,
listCacheSet = ;
/**
* Creates an list cache object.
*
* @private
* @constructor
* @param {Array} [entries] The key-value pairs to cache.
*/
// Add methods to `ListCache`.
. = listCacheClear;
= listCacheDelete;
. = listCacheGet;
. = listCacheHas;
. = listCacheSet;
module.exports = ListCache;