Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <steve.cassidy@mq.edu.au>
  • Loading branch information
stevecassidy committed Nov 9, 2023
1 parent e74aea5 commit 5443978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/couchdb/notebooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ type DesignDocument = {
};

const isEqualObjects = (a: any, b: any) => {
for (const key in a) { // Using for-in in a object you can iterate the properties
for (const key in a) {
const a_value = a[key];
const b_value = b[key];
if (a_value instanceof Object && b_value instanceof Object) {
Expand Down

0 comments on commit 5443978

Please sign in to comment.