artdaq_node_server  v1_00_09
 All Classes Namespaces Files Variables Pages
_MapCache.js
1 var mapCacheClear = require('./_mapCacheClear'),
2  mapCacheDelete = require('./_mapCacheDelete'),
3  mapCacheGet = require('./_mapCacheGet'),
4  mapCacheHas = require('./_mapCacheHas'),
5  mapCacheSet = require('./_mapCacheSet');
6 
14 function MapCache(entries) {
15  var index = -1,
16  length = entries == null ? 0 : entries.length;
17 
18  this.clear();
19  while (++index < length) {
20  var entry = entries[index];
21  this.set(entry[0], entry[1]);
22  }
23 }
24 
25 // Add methods to `MapCache`.
26 MapCache.prototype.clear = mapCacheClear;
27 MapCache.prototype['delete'] = mapCacheDelete;
28 MapCache.prototype.get = mapCacheGet;
29 MapCache.prototype.has = mapCacheHas;
30 MapCache.prototype.set = mapCacheSet;
31 
32 module.exports = MapCache;