bf1eb2e24d51afa8a1d79ce8c661406d81fac559
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _baseSortedUniq.js
1 var baseSortedUniqBy = require('./_baseSortedUniqBy');
2
3 /**
4  * The base implementation of `_.sortedUniq`.
5  *
6  * @private
7  * @param {Array} array The array to inspect.
8  * @returns {Array} Returns the new duplicate free array.
9  */
10 function baseSortedUniq(array) {
11   return baseSortedUniqBy(array);
12 }
13
14 module.exports = baseSortedUniq;