Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bhargeymehta committed Sep 6, 2024
1 parent b8d9f74 commit a85e71b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/objectstoreprovider",
"version": "0.6.47",
"version": "0.6.48",
"description": "A cross-browser object store library",
"author": "Mukundan Kavanur Kidambi <[email protected]>",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/InMemoryProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries {
const iterator = reverse
? this._indexTree.entriesReversed()
: this._indexTree.entries();
let values = [] as ItemType[];
const values = [] as ItemType[];
for (const entry of iterator) {
const key = entry.key;
if (key === undefined) {
Expand Down

0 comments on commit a85e71b

Please sign in to comment.