We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c57d8 commit 98235d8Copy full SHA for 98235d8
lib/internal/util/comparisons.js
@@ -59,7 +59,7 @@ function areSimilarFloatArrays(a, b) {
59
if (a.byteLength !== b.byteLength) {
60
return false;
61
}
62
- for (var offset = 0; offset < a.byteLength; offset++) {
+ for (let offset = 0; offset < a.byteLength; offset++) {
63
if (a[offset] !== b[offset]) {
64
65
0 commit comments