diff options
author | 2023-05-28 23:13:24 +0200 | |
---|---|---|
committer | 2023-05-28 23:29:14 +0200 | |
commit | 33c9b6643f58a6930043f460d5bfdca4bc1f7222 (patch) | |
tree | f313935e30f7b90ea16e564e7171e2e72319ce29 /src/tools/json-diff/json-diff.models.ts | |
parent | 4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (diff) | |
download | it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.gz it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.zst it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.zip |
chore(lint): switched to a better lint config
Diffstat (limited to 'src/tools/json-diff/json-diff.models.ts')
-rw-r--r-- | src/tools/json-diff/json-diff.models.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/json-diff/json-diff.models.ts b/src/tools/json-diff/json-diff.models.ts index ee6ba4b..54bb253 100644 --- a/src/tools/json-diff/json-diff.models.ts +++ b/src/tools/json-diff/json-diff.models.ts @@ -46,8 +46,8 @@ function diffObjects( ): Difference[] { const keys = Object.keys({ ...obj, ...newObj }); return keys - .map((key) => createDifference(obj?.[key], newObj?.[key], key, { onlyShowDifferences })) - .filter((diff) => !onlyShowDifferences || diff.status !== 'unchanged'); + .map(key => createDifference(obj?.[key], newObj?.[key], key, { onlyShowDifferences })) + .filter(diff => !onlyShowDifferences || diff.status !== 'unchanged'); } function createDifference( @@ -99,7 +99,7 @@ function diffArrays( const maxLength = Math.max(0, arr?.length, newArr?.length); return Array.from({ length: maxLength }, (_, i) => createDifference(arr?.[i], newArr?.[i], i, { onlyShowDifferences }), - ).filter((diff) => !onlyShowDifferences || diff.status !== 'unchanged'); + ).filter(diff => !onlyShowDifferences || diff.status !== 'unchanged'); } function getType(value: unknown): 'object' | 'array' | 'value' { |