Files
lodash/internal/baseSortedUniq.js
John-David Dalton 8c26e6fd4c Bump to v4.0.0.
2016-01-13 01:10:19 -08:00

16 lines
353 B
JavaScript

define(['./baseSortedUniqBy'], function(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);
}
return baseSortedUniq;
});