Sha256: 180372f66c983a5f424145fa1e2fb0d7d3ad9cc4249e2489c203cadc0e0456cc

Contents?: true

Size: 598 Bytes

Versions: 273

Compression:

Stored size: 598 Bytes

Contents

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

/** Used to stand-in for `undefined` hash values. */
var HASH_UNDEFINED = '__lodash_hash_undefined__';

/**
 * Sets the hash `key` to `value`.
 *
 * @private
 * @name set
 * @memberOf Hash
 * @param {string} key The key of the value to set.
 * @param {*} value The value to set.
 * @returns {Object} Returns the hash instance.
 */
function hashSet(key, value) {
  var data = this.__data__;
  this.size += this.has(key) ? 0 : 1;
  data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
  return this;
}

module.exports = hashSet;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.59 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.58 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.57 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.56 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.55 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.54 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.53 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.52 node_modules/lodash/_hashSet.js
trusty-cms-6.3.1 node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.51 node_modules/lodash/_hashSet.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/_hashSet.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
immosquare-cleaner-0.1.50 node_modules/lodash/_hashSet.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/_hashSet.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/_hashSet.js