diff --git a/encode.js b/encode.js index 91886a6..f4ecb8d 100644 --- a/encode.js +++ b/encode.js @@ -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') }