Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / mapClear.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/mapClear.js b/node_modules/uncss/node_modules/lodash/internal/mapClear.js
new file mode 100644 (file)
index 0000000..cae5fdd
--- /dev/null
@@ -0,0 +1,15 @@
+var Hash = require('./Hash'),
+    Map = require('./Map');
+
+/**
+ * Removes all key-value entries from the map.
+ *
+ * @private
+ * @name clear
+ * @memberOf MapCache
+ */
+function mapClear() {
+  this.__data__ = { 'hash': new Hash, 'map': Map ? new Map : [], 'string': new Hash };
+}
+
+module.exports = mapClear;