mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Fix remaining linting warnings
This commit is contained in:
@@ -3868,10 +3868,10 @@ function objectsEqual (a, b) {
|
||||
if (!a && b) return false
|
||||
if (a && !b) return false
|
||||
if (a && b) {
|
||||
for (key in a) {
|
||||
for (const key in a) {
|
||||
if (a[key] !== b[key]) return false
|
||||
}
|
||||
for (key in b) {
|
||||
for (const key in b) {
|
||||
if (a[key] !== b[key]) return false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user