.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _listCacheClear.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_listCacheClear.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_listCacheClear.js
new file mode 100644 (file)
index 0000000..acbe39a
--- /dev/null
@@ -0,0 +1,13 @@
+/**
+ * Removes all key-value entries from the list cache.
+ *
+ * @private
+ * @name clear
+ * @memberOf ListCache
+ */
+function listCacheClear() {
+  this.__data__ = [];
+  this.size = 0;
+}
+
+module.exports = listCacheClear;