Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/2be51796bc4cf98251849c75c8209838.json

1 line
529 B
JSON
Raw Normal View History

2020-12-21 11:29:31 -04:00
{"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"}