Files
lodash/_baseSortedUniq.js
John-David Dalton bbd78fee4d Bump to v4.1.0.
2016-01-29 08:30:29 -08:00

15 lines
332 B
JavaScript

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;