Skip to content

Commit

Permalink
test: replace var with let in pre_execution.js
Browse files Browse the repository at this point in the history
PR-URL: #30411
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
Vunovati authored and addaleax committed Nov 30, 2019
1 parent 0fd89cc commit 7e7a816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/bootstrap/pre_execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ function initializePolicy() {
const realIntegrities = new Map();
const integrityEntries = SRI.parse(experimentalPolicyIntegrity);
let foundMatch = false;
for (var i = 0; i < integrityEntries.length; i++) {
for (let i = 0; i < integrityEntries.length; i++) {
const {
algorithm,
value: expected
Expand Down

0 comments on commit 7e7a816

Please sign in to comment.