Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / intersection.js
diff --git a/node_modules/uncss/node_modules/lodash/intersection.js b/node_modules/uncss/node_modules/lodash/intersection.js
new file mode 100644 (file)
index 0000000..6a33fcf
--- /dev/null
@@ -0,0 +1,28 @@
+var arrayMap = require('./internal/arrayMap'),
+    baseIntersection = require('./internal/baseIntersection'),
+    rest = require('./rest'),
+    toArrayLikeObject = require('./internal/toArrayLikeObject');
+
+/**
+ * Creates an array of unique values that are included in all of the provided
+ * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
+ * for equality comparisons.
+ *
+ * @static
+ * @memberOf _
+ * @category Array
+ * @param {...Array} [arrays] The arrays to inspect.
+ * @returns {Array} Returns the new array of shared values.
+ * @example
+ *
+ * _.intersection([2, 1], [4, 2], [1, 2]);
+ * // => [2]
+ */
+var intersection = rest(function(arrays) {
+  var mapped = arrayMap(arrays, toArrayLikeObject);
+  return (mapped.length && mapped[0] === arrays[0])
+    ? baseIntersection(mapped)
+    : [];
+});
+
+module.exports = intersection;