Files
biomedjs/node_modules/lodash/internal/mapDelete.js
Dobie Wollert 411ee25a5e more work
2015-04-20 05:31:12 -04:00

15 lines
370 B
JavaScript

/**
* Removes `key` and its value from the cache.
*
* @private
* @name delete
* @memberOf _.memoize.Cache
* @param {string} key The key of the value to remove.
* @returns {boolean} Returns `true` if the entry was removed successfully, else `false`.
*/
function mapDelete(key) {
return this.has(key) && delete this.__data__[key];
}
module.exports = mapDelete;