d06b41d8449be3445f64d93afbb281a267a199aa1700f60bea98764332ddfe76a51db6a715941966b234918e2abdf434567e7b48772e4f269ea5d0e8fffbcf 450 B

123456789101112131415161718
  1. var getMapData = require('./_getMapData');
  2. /**
  3. * Removes `key` and its value from the map.
  4. *
  5. * @private
  6. * @name delete
  7. * @memberOf MapCache
  8. * @param {string} key The key of the value to remove.
  9. * @returns {boolean} Returns `true` if the entry was removed, else `false`.
  10. */
  11. function mapCacheDelete(key) {
  12. var result = getMapData(this, key)['delete'](key);
  13. this.size -= result ? 1 : 0;
  14. return result;
  15. }
  16. module.exports = mapCacheDelete;