Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / baseSortedUniq.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/baseSortedUniq.js b/node_modules/uncss/node_modules/lodash/internal/baseSortedUniq.js
new file mode 100644 (file)
index 0000000..777db61
--- /dev/null
@@ -0,0 +1,14 @@
+var baseSortedUniqBy = require('./baseSortedUniqBy');
+
+/**
+ * The base implementation of `_.sortedUniq`.
+ *
+ * @private
+ * @param {Array} array The array to inspect.
+ * @returns {Array} Returns the new duplicate free array.
+ */
+function baseSortedUniq(array) {
+  return baseSortedUniqBy(array);
+}
+
+module.exports = baseSortedUniq;