Repository URL to install this package:
|
Version:
5.0.0-rc.11 ▾
|
'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