summaryrefslogtreecommitdiff
path: root/alarm/node_modules/lodash/_mapCacheClear.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/lodash/_mapCacheClear.js')
-rw-r--r--alarm/node_modules/lodash/_mapCacheClear.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/alarm/node_modules/lodash/_mapCacheClear.js b/alarm/node_modules/lodash/_mapCacheClear.js
deleted file mode 100644
index bc9ca20..0000000
--- a/alarm/node_modules/lodash/_mapCacheClear.js
+++ /dev/null
@@ -1,21 +0,0 @@
-var Hash = require('./_Hash'),
- ListCache = require('./_ListCache'),
- Map = require('./_Map');
-
-/**
- * Removes all key-value entries from the map.
- *
- * @private
- * @name clear
- * @memberOf MapCache
- */
-function mapCacheClear() {
- this.size = 0;
- this.__data__ = {
- 'hash': new Hash,
- 'map': new (Map || ListCache),
- 'string': new Hash
- };
-}
-
-module.exports = mapCacheClear;