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.60 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.59 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.58 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.57 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.56 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.55 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.54 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.53 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.52 node_modules/lodash/_ListCache.js
trusty-cms-6.3.1 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.51 node_modules/lodash/_ListCache.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/_ListCache.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.50 node_modules/lodash/_ListCache.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/_ListCache.js