Fix _.sortedUniqBy doc example. [ci skip]

This commit is contained in:
laispace
2016-02-02 15:39:36 +08:00
committed by John-David Dalton
parent daeb55e99d
commit 29bc8d965b

View File

@@ -6465,7 +6465,7 @@
* @example
*
* _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor);
* // => [1.1, 2.2]
* // => [1.1, 2.3]
*/
function sortedUniqBy(array, iteratee) {
return (array && array.length)