X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ad5208965b91e020b431cd9d2c1d15ff4b856450..76f6fc151e007fcce23c89a7414cfbd7b116897b:/src/common/objects.ts diff --git a/src/common/objects.ts b/src/common/objects.ts index 0a01ed62..12dd004b 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) {