_.sortedUniq(array)
这个方法类似 _.uniq,除了它会排序并优化数组。
_.uniq
array (Array)
要调整的数组
返回一个不重复的数组
_.sortedUniq([1, 1, 2]); // => [1, 2]