Sha256: 2b10bf68a2e572e392f8f5b1d47c8fbd3f759d1fc80482bf57bc768596ec862c

Contents?: true

Size: 869 Bytes

Versions: 273

Compression:

Stored size: 869 Bytes

Contents

var listCacheClear = require('./_listCacheClear'),
    listCacheDelete = require('./_listCacheDelete'),
    listCacheGet = require('./_listCacheGet'),
    listCacheHas = require('./_listCacheHas'),
    listCacheSet = require('./_listCacheSet');

/**
 * Creates an list cache object.
 *
 * @private
 * @constructor
 * @param {Array} [entries] The key-value pairs to cache.
 */
function ListCache(entries) {
  var index = -1,
      length = entries == null ? 0 : entries.length;

  this.clear();
  while (++index < length) {
    var entry = entries[index];
    this.set(entry[0], entry[1]);
  }
}

// Add methods to `ListCache`.
ListCache.prototype.clear = listCacheClear;
ListCache.prototype['delete'] = listCacheDelete;
ListCache.prototype.get = listCacheGet;
ListCache.prototype.has = listCacheHas;
ListCache.prototype.set = listCacheSet;

module.exports = ListCache;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
immosquare-cleaner-0.1.27 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.26 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.25 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.24 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.23 node_modules/lodash/_ListCache.js
sumomo-0.10.4 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.10.3 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.10.2 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.10.0 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
reed_sdk-1.0.1 node_modules/lodash/_ListCache.js
reed_sdk-1.0.0 node_modules/lodash/_ListCache.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/lodash/_ListCache.js
sumomo-0.9.0 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.8.22 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.8.21 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.8.20 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
disco_app-0.18.0 test/dummy/node_modules/lodash/_ListCache.js