Sha256: 7ebef49fb1f8bca1c1710a045c4a4e52d0c34cbe547a95a18e2c02e7cfddebdd

Contents?: true

Size: 626 Bytes

Versions: 270

Compression:

Stored size: 626 Bytes

Contents

var nativeCreate = require('./_nativeCreate');

/** 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 ? (data[key] !== undefined) : hasOwnProperty.call(data, key);
}

module.exports = hashHas;

Version data entries

270 entries across 269 versions & 28 rubygems

Version Path
sumomo-0.7.3 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.7.2 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.7.1 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.6.4 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.6.3 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.6.2 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
sumomo-0.6.1 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
affiliator-0.2.1 node_modules/lodash/_hashHas.js
sumomo-0.6.0 data/sumomo/api_modules/node_modules/lodash/_hashHas.js
lanes-0.8.0 node_modules/lodash/_hashHas.js