X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2b3f667039ba2e7efe0852d58ae2c62899b773f0..a672dd5efb4c8ef394f61a7e7a5e513f80bf1427:/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) {