X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/72b6c853b95b1ef3da2a0beca3a31e4838a17896..c952afae1af2fb31b68be04f70bd7ae6f9d52aba:/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) {