summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/internal/MapCache.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/internal/MapCache.js')
-rw-r--r--tools/eslint/node_modules/lodash/internal/MapCache.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/tools/eslint/node_modules/lodash/internal/MapCache.js b/tools/eslint/node_modules/lodash/internal/MapCache.js
deleted file mode 100644
index 1d7ab98171..0000000000
--- a/tools/eslint/node_modules/lodash/internal/MapCache.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var mapDelete = require('./mapDelete'),
- mapGet = require('./mapGet'),
- mapHas = require('./mapHas'),
- mapSet = require('./mapSet');
-
-/**
- * Creates a cache object to store key/value pairs.
- *
- * @private
- * @static
- * @name Cache
- * @memberOf _.memoize
- */
-function MapCache() {
- this.__data__ = {};
-}
-
-// Add functions to the `Map` cache.
-MapCache.prototype['delete'] = mapDelete;
-MapCache.prototype.get = mapGet;
-MapCache.prototype.has = mapHas;
-MapCache.prototype.set = mapSet;
-
-module.exports = MapCache;