Removed modules/contrib/media module to allow update to the core media module
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / 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;