Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _SetCache.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/_SetCache.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/_SetCache.js
new file mode 100644 (file)
index 0000000..66b8b61
--- /dev/null
@@ -0,0 +1,24 @@
+var MapCache = require('./_MapCache'),
+    cachePush = require('./_cachePush');
+
+/**
+ *
+ * Creates a set cache object to store unique values.
+ *
+ * @private
+ * @param {Array} [values] The values to cache.
+ */
+function SetCache(values) {
+  var index = -1,
+      length = values ? values.length : 0;
+
+  this.__data__ = new MapCache;
+  while (++index < length) {
+    this.push(values[index]);
+  }
+}
+
+// Add functions to the `SetCache`.
+SetCache.prototype.push = cachePush;
+
+module.exports = SetCache;