source: imaps-frontend/node_modules/lodash-es/_hashSet.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 596 bytes
Line 
1import nativeCreate from './_nativeCreate.js';
2
3/** Used to stand-in for `undefined` hash values. */
4var HASH_UNDEFINED = '__lodash_hash_undefined__';
5
6/**
7 * Sets the hash `key` to `value`.
8 *
9 * @private
10 * @name set
11 * @memberOf Hash
12 * @param {string} key The key of the value to set.
13 * @param {*} value The value to set.
14 * @returns {Object} Returns the hash instance.
15 */
16function hashSet(key, value) {
17 var data = this.__data__;
18 this.size += this.has(key) ? 0 : 1;
19 data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
20 return this;
21}
22
23export default hashSet;
Note: See TracBrowser for help on using the repository browser.