Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / MapCache.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/MapCache.js b/node_modules/uncss/node_modules/lodash/internal/MapCache.js
new file mode 100644 (file)
index 0000000..bd1db5d
--- /dev/null
@@ -0,0 +1,31 @@
+var mapClear = require('./mapClear'),
+    mapDelete = require('./mapDelete'),
+    mapGet = require('./mapGet'),
+    mapHas = require('./mapHas'),
+    mapSet = require('./mapSet');
+
+/**
+ * Creates a map cache object to store key-value pairs.
+ *
+ * @private
+ * @param {Array} [values] The values to cache.
+ */
+function MapCache(values) {
+  var index = -1,
+      length = values ? values.length : 0;
+
+  this.clear();
+  while (++index < length) {
+    var entry = values[index];
+    this.set(entry[0], entry[1]);
+  }
+}
+
+// Add functions to the `MapCache`.
+MapCache.prototype.clear = mapClear;
+MapCache.prototype['delete'] = mapDelete;
+MapCache.prototype.get = mapGet;
+MapCache.prototype.has = mapHas;
+MapCache.prototype.set = mapSet;
+
+module.exports = MapCache;