1 var listCacheClear = require(
'./_listCacheClear'),
2 listCacheDelete = require(
'./_listCacheDelete'),
3 listCacheGet = require(
'./_listCacheGet'),
4 listCacheHas = require(
'./_listCacheHas'),
5 listCacheSet = require(
'./_listCacheSet');
14 function ListCache(entries) {
16 length = entries == null ? 0 : entries.length;
19 while (++index < length) {
20 var entry = entries[index];
21 this.set(entry[0], entry[1]);
26 ListCache.prototype.clear = listCacheClear;
27 ListCache.prototype[
'delete'] = listCacheDelete;
28 ListCache.prototype.get = listCacheGet;
29 ListCache.prototype.has = listCacheHas;
30 ListCache.prototype.set = listCacheSet;
32 module.exports = ListCache;