We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d024630 commit 0b64e45Copy full SHA for 0b64e45
lib/internal/process/main_thread_only.js
@@ -77,7 +77,7 @@ function wrapPosixCredentialSetters(credentials) {
77
if (!Array.isArray(groups)) {
78
throw new ERR_INVALID_ARG_TYPE('groups', 'Array', groups);
79
}
80
- for (var i = 0; i < groups.length; i++) {
+ for (let i = 0; i < groups.length; i++) {
81
validateId(groups[i], `groups[${i}]`);
82
83
// Result is 0 on success. A positive integer indicates that the
0 commit comments