Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/2be51796bc4cf98251849c75c82...

1 line
529 B
JSON

{"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}\n\nmodule.exports = hashDelete;","map":null,"metadata":{},"sourceType":"script"}