Skip to content

Commit

Permalink
fix: disable eslint for line
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcath committed Nov 16, 2022
1 parent ac6cd2d commit d51062d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/functions/diff-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const diffObject = <T extends {}, K extends {}>(
Object.keys(original).forEach(key => {
if (compare.hasOwnProperty(key)) {
// Key from Original exists in Compare
//eslint-disable-next-line
if (
(compare as {[key: string]: string})[key] !==
(original as {[key: string]: string})[key]
Expand Down

0 comments on commit d51062d

Please sign in to comment.