Skip to content

Commit 111caf9

Browse files
committed
Use let instead of const
1 parent 9209ff4 commit 111caf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/Link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function isModifiedEvent(event) {
1212
}
1313

1414
function isEmptyObject(object) {
15-
for (const p in object)
15+
for (let p in object)
1616
if (object.hasOwnProperty(p))
1717
return false
1818

0 commit comments

Comments
 (0)