Skip to content

Commit 56a17f4

Browse files
author
alxndrsn
committed
use const
1 parent aed6f98 commit 56a17f4

File tree

1 file changed

+1
-1
lines changed
  • packages/node_modules/pouchdb-adapter-indexeddb/src

1 file changed

+1
-1
lines changed

packages/node_modules/pouchdb-adapter-indexeddb/src/getLocal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function (txn, id, api, callback) {
2424

2525
if (result._attachments) {
2626
const processing = [];
27-
for (var name in result._attachments) {
27+
for (const name in result._attachments) {
2828
processing.push(processAttachment(name, doc, result, BINARY_ATTACHMENTS, api.blobSupport));
2929
}
3030
Promise.all(processing)

0 commit comments

Comments
 (0)