From 5443978d3cc3b7abe3f8d155112d8cb733ca6a71 Mon Sep 17 00:00:00 2001 From: Steve Cassidy Date: Fri, 10 Nov 2023 09:01:33 +1100 Subject: [PATCH] lint fix Signed-off-by: Steve Cassidy --- src/couchdb/notebooks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couchdb/notebooks.ts b/src/couchdb/notebooks.ts index 5be21f0f..8a999759 100644 --- a/src/couchdb/notebooks.ts +++ b/src/couchdb/notebooks.ts @@ -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) {