some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _mapCacheClear.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_mapCacheClear.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_mapCacheClear.js
deleted file mode 100644 (file)
index bc9ca20..0000000
+++ /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;