Files
lodash/_baseSortedUniq.js
John-David Dalton 7293d39642 Bump to v4.1.0.
2016-01-29 01:14:13 -08:00

16 lines
354 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;
});