Skip to content

Commit 3071e59

Browse files
authored
Merge branch 'main' into main
2 parents 85eacae + 6efcd35 commit 3071e59

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/internal/validators.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,7 @@ const validateUint32 = hideStackFrames((value, name, positive = false) => {
125125
}
126126
const min = positive ? 1 : 0
127127
// 2 ** 32 === 4294967296
128-
<<<<<<< HEAD
129128
const max = 4294967295
130-
=======
131-
const max = 4_294_967_295
132-
>>>>>>> 6efcd35 (chore: just build to fix whitespace issues (#498))
133129
if (value < min || value > max) {
134130
throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)
135131
}

0 commit comments

Comments
 (0)