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 / _listCacheHas.js
Size: Mime:
'use strict';

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

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

/**
 * Checks if a list cache value for `key` exists.
 *
 * @private
 * @name has
 * @memberOf ListCache
 * @param {string} key The key of the entry to check.
 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
 */
function listCacheHas(key) {
  return _assocIndexOf.default(this.__data__, key) > -1;
}

var _listCacheHas = listCacheHas;

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