lodash-hash实现 发表于 2017-10-16 | 分类于 js 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485const HASH_UNDEFINED = '__lodash_hash_undefined__'class Hash { /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ constructor(entries) { let index = -1 const length = entries == null ? 0 : entries.length this.clear() while (++index < length) { const entry = entries[index] this.set(entry[0], entry[1]) } } /** * Removes all key-value entries from the hash. * * @memberOf Hash */ clear() { this.__data__ = Object.create(null) this.size = 0 } /** * Removes `key` and its value from the hash. * * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ delete(key) { const result = this.has(key) && delete this.__data__[key] this.size -= result ? 1 : 0 return result } /** * Gets the hash value for `key`. * * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ get(key) { const data = this.__data__ const result = data[key] return result === HASH_UNDEFINED ? undefined : result } /** * Checks if a hash value for `key` exists. * * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ has(key) { const data = this.__data__ return data[key] !== undefined } /** * Sets the hash `key` to `value`. * * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ set(key, value) { const data = this.__data__ this.size += this.has(key) ? 0 : 1 data[key] = value === undefined ? HASH_UNDEFINED : value return this }}