Sha256: 499002dd4ffe04bb2c270f5629b85b8c1578ace90f18b8f6ddc62fdc75a9c018

Contents?: true

Size: 420 Bytes

Versions: 299

Compression:

Stored size: 420 Bytes

Contents

var assocIndexOf = require('./_assocIndexOf');

/**
 * Gets the list cache value for `key`.
 *
 * @private
 * @name get
 * @memberOf ListCache
 * @param {string} key The key of the value to get.
 * @returns {*} Returns the entry value.
 */
function listCacheGet(key) {
  var data = this.__data__,
      index = assocIndexOf(data, key);

  return index < 0 ? undefined : data[index][1];
}

module.exports = listCacheGet;

Version data entries

299 entries across 276 versions & 32 rubygems

Version Path
clapton-0.0.19 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.18 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.17 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.16 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.15 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
immosquare-cleaner-0.1.49 node_modules/lodash/_listCacheGet.js
clapton-0.0.14 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
immosquare-cleaner-0.1.48 node_modules/lodash/_listCacheGet.js
clapton-0.0.13 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.12 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.11 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.10 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.9 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.8 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.7 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.6 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.5 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.4 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.3 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js
clapton-0.0.2 lib/clapton/javascripts/node_modules/lodash/_listCacheGet.js