8243b03f352089f6db2fca00c56a44a0be61e12c3fe5a89f238d3fa452ee0b42.json 551 B

1
  1. {"ast":null,"code":"/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\nexport default hashDelete;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}