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.1 lib/clapton/javascripts/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.47 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.46 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.45 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.44 node_modules/lodash/_ListCache.js
boring_generators-0.14.0 tmp/templates/app_template/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.43 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.42 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.41 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.40 node_modules/lodash/_ListCache.js
sumomo-0.10.8 data/sumomo/api_modules/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.39 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.38 node_modules/lodash/_ListCache.js
optimacms-0.1.61 spec/dummy/node_modules/lodash/_ListCache.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.32 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.31 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.30 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.29 node_modules/lodash/_ListCache.js
immosquare-cleaner-0.1.28 node_modules/lodash/_ListCache.js