Skip to content

Commit

Permalink
Fix let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
ahk committed Jun 12, 2019
1 parent 93a4216 commit 4bcd229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style-spec/util/unbundle_jsonlint.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function deepUnbundle(value) {
return value.map(deepUnbundle);
} else if (value instanceof Object && !isPrimitive(value)) {
const unbundledValue = {};
for (let key in value) {
for (const key in value) {
unbundledValue[key] = deepUnbundle(value[key]);
}
return unbundledValue;
Expand Down

0 comments on commit 4bcd229

Please sign in to comment.