X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/72b6c853b95b1ef3da2a0beca3a31e4838a17896..08ac60f877d6495a748747a3a0d30ca9f0e289d5:/src/common/objects.ts diff --git a/src/common/objects.ts b/src/common/objects.ts index 0a01ed626c..12dd004b7e 100644 --- a/src/common/objects.ts +++ b/src/common/objects.ts @@ -1,11 +1,11 @@ // Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 -import * as _ from "lodash"; +import { union, keys as keys_1, filter } from "lodash"; export function getModifiedKeys(a: any, b: any) { - const keys = _.union(_.keys(a), _.keys(b)); - return _.filter(keys, key => a[key] !== b[key]); + const keys = union(keys_1(a), keys_1(b)); + return filter(keys, key => a[key] !== b[key]); } export function getModifiedKeysValues(a: any, b: any) {