diff options
Diffstat (limited to 'tools/eslint/node_modules/lodash/_mapCacheDelete.js')
-rw-r--r-- | tools/eslint/node_modules/lodash/_mapCacheDelete.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/lodash/_mapCacheDelete.js b/tools/eslint/node_modules/lodash/_mapCacheDelete.js new file mode 100644 index 0000000000..08f1c2efee --- /dev/null +++ b/tools/eslint/node_modules/lodash/_mapCacheDelete.js @@ -0,0 +1,16 @@ +var getMapData = require('./_getMapData'); + +/** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function mapCacheDelete(key) { + return getMapData(this, key)['delete'](key); +} + +module.exports = mapCacheDelete; |