00001 00011 function hashDelete(key) { 00012 var result = this.has(key) && delete this.__data__[key]; 00013 this.size -= result ? 1 : 0; 00014 return result; 00015 } 00016 00017 module.exports = hashDelete;