Revert "fix: ensure MAX_SAFE_INTEGER exists"

This reverts commit da118c9a22.
master
Chris Dickinson 4 years ago
parent 1198bb8223
commit 79d2daa0cc

@ -6,7 +6,7 @@ var MSB = 0x80
, INT = Math.pow(2, 31)
function encode(num, out, offset) {
if (Number.MAX_SAFE_INTEGER && num > Number.MAX_SAFE_INTEGER) {
if (num > Number.MAX_SAFE_INTEGER) {
encode.bytes = 0
throw new RangeError('Could not encode varint')
}

Loading…
Cancel
Save