Skip to content

Commit 54cfce6

Browse files
committed
Fix white space
1 parent a28a7a0 commit 54cfce6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cache-provider.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ export default async function createCacheProvider<Data = any, Error = any>({
3939

4040
// Get storage snapshot
4141
let cursor = await db.transaction(storeName, 'readwrite').store.openCursor()
42-
42+
4343
while (cursor) {
4444
const key = cursor.key as Key
4545
const value = storageHandler.revive(key, cursor.value)
46-
46+
4747
// Stale
4848
if (value === undefined) {
4949
cursor.delete()
5050
// OK
5151
} else {
5252
map.set(key, value)
5353
}
54-
54+
5555
cursor = await cursor.continue()
5656
}
5757
} catch (error) {

0 commit comments

Comments
 (0)