Files
lodash/_baseSortedUniq.js
John-David Dalton 466c67a8b6 Bump to v4.1.0.
2016-01-29 01:20:57 -08:00

15 lines
327 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;