Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _baseSortedUniq.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/_baseSortedUniq.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/_baseSortedUniq.js
new file mode 100644 (file)
index 0000000..bf1eb2e
--- /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;