Skip to content

Commit

Permalink
lib: main_thread_only change var to let
Browse files Browse the repository at this point in the history
PR-URL: #30398
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
matijagaspar authored and addaleax committed Nov 30, 2019
1 parent d024630 commit 0b64e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/process/main_thread_only.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function wrapPosixCredentialSetters(credentials) {
if (!Array.isArray(groups)) {
throw new ERR_INVALID_ARG_TYPE('groups', 'Array', groups);
}
for (var i = 0; i < groups.length; i++) {
for (let i = 0; i < groups.length; i++) {
validateId(groups[i], `groups[${i}]`);
}
// Result is 0 on success. A positive integer indicates that the
Expand Down

0 comments on commit 0b64e45

Please sign in to comment.