Repository URL to install this package:
|
Version:
5.0.0-rc.11 ▾
|
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var _nativeCreate = require('./_nativeCreate.js');
/** Used for built-in method references. */
var objectProto = Object.prototype;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.hasOwnProperty;
/**
* Checks if a hash value for `key` exists.
*
* @private
* @name has
* @memberOf Hash
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function hashHas(key) {
var data = this.__data__;
return _nativeCreate.default ? (data[key] !== undefined) : hasOwnProperty.call(data, key);
}
var _hashHas = hashHas;
exports.__moduleExports = _hashHas;
exports.default = _hashHas;
//# sourceMappingURL=_hashHas.js.map