From d6a73877f3f8fb912e2d2dafb8a93b3837f1de6f Mon Sep 17 00:00:00 2001 From: Ankit Date: Fri, 27 Sep 2024 16:31:30 +0530 Subject: [PATCH] removed const idb --- src/classes/table/table.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/classes/table/table.ts b/src/classes/table/table.ts index 6fa0acdf3..95890707c 100644 --- a/src/classes/table/table.ts +++ b/src/classes/table/table.ts @@ -145,7 +145,6 @@ export class Table implements ITable { // Ok, now let's fallback to finding at least one matching index // and filter the rest. const { idxByName } = this.schema; - const idb = this.db._deps.indexedDB; function equals(a, b) { return cmp(a, b) === 0; // Works with all indexable types including binary keys.