diff --git a/lodash.js b/lodash.js index ad6dc9f48..f3df8613c 100644 --- a/lodash.js +++ b/lodash.js @@ -5403,7 +5403,7 @@ */ function uniqBy(array, iteratee) { return (array && array.length) - ? baseUniq(array, getIteratee(iteratee)) + ? baseUniqBy(array, getIteratee(iteratee)) : []; }