Skip to content

Commit

Permalink
chore: just build to fix whitespace issues (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
bergos authored and jaxoncreed committed Nov 23, 2022
1 parent 515a29f commit be86ca9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/internal/validators.js
Expand Up @@ -125,11 +125,7 @@ const validateUint32 = hideStackFrames((value, name, positive = false) => {
}
const min = positive ? 1 : 0
// 2 ** 32 === 4294967296
<<<<<<< HEAD
const max = 4294967295
=======
const max = 4_294_967_295
>>>>>>> 6efcd35 (chore: just build to fix whitespace issues (#498))
if (value < min || value > max) {
throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)
}
Expand Down

0 comments on commit be86ca9

Please sign in to comment.