js: Convert _.uniq(a) to Array.from(new Set(a)).

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2020-02-26 00:27:24 -08:00
committed by Tim Abbott
parent 2fc156e556
commit e2290ef0de
3 changed files with 2 additions and 7 deletions

View File

@@ -1,5 +1,3 @@
import _ from "lodash";
import * as muted_users from "./muted_users";
import * as util from "./util";
@@ -56,7 +54,6 @@ export function get_group_typists(group) {
export function get_all_typists() {
let typists = Array.from(typist_dct.values()).flat();
typists = util.sorted_ids(typists);
typists = _.sortedUniq(typists);
return muted_users.filter_muted_user_ids(typists);
}