Version 1
[yaffs-website] / node_modules / grunt-uncss / node_modules / lodash / _listCacheClear.js
diff --git a/node_modules/grunt-uncss/node_modules/lodash/_listCacheClear.js b/node_modules/grunt-uncss/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;