Skip to content

Commit

Permalink
Merge pull request #87 from AntoineAugusti/patch-1
Browse files Browse the repository at this point in the history
Add missing const
  • Loading branch information
aadsm authored Mar 25, 2024
2 parents fcf0697 + a296c96 commit fb6b283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/universaldetector.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const supportedEncodings = (function() {
})();

const supportedEncodingsDenormalized = (function() {
denormalizedEncodings = [];
const denormalizedEncodings = [];
for (const encoding of supportedEncodings) {
denormalizedEncodings.push(
encoding.toLocaleLowerCase(),
Expand Down

0 comments on commit fb6b283

Please sign in to comment.