Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/i18n / dist / cjs / node_modules / lodash / _listCacheGet.js
Size: Mime:
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

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

/**
 * 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.default(data, key);

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

var _listCacheGet = listCacheGet;

exports.__moduleExports = _listCacheGet;
exports.default = _listCacheGet;
//# sourceMappingURL=_listCacheGet.js.map