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
clapton-0.0.19 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.18 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.17 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.16 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.15 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.49 node_modules/lodash/_ListCache.js
clapton-0.0.14 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.48 node_modules/lodash/_ListCache.js
clapton-0.0.13 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.12 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.11 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.10 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.9 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.8 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.7 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.6 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.5 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.4 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.3 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
clapton-0.0.2 lib/clapton/javascripts/node_modules/lodash/_ListCache.js