Skip to content

Commit c70083c

Browse files
authored
squash: useless comment
1 parent 79992fe commit c70083c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/internal/crypto/util.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,9 +696,6 @@ function bigIntArrayToUnsignedInt(input) {
696696
result |= input[n] << 8 * n_reversed;
697697
}
698698

699-
// Coerce the result to an unsigned 32-bit integer. Without this, a most
700-
// significant byte with the top bit set (e.g. [0x80, 0x00, 0x00, 0x01])
701-
// would be returned as a negative Int32 because of the signed `<<` operator.
702699
return result >>> 0;
703700
}
704701

0 commit comments

Comments
 (0)