Files
lodash/internal/baseSortedUniq.js
John-David Dalton 54e7baecc3 Bump to v4.0.0.
2016-01-12 00:17:29 -08:00

15 lines
326 B
JavaScript

import baseSortedUniqBy from './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);
}
export default baseSortedUniq;