We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0bc20b commit b8d5ba3Copy full SHA for b8d5ba3
lib/binary_parser.ts
@@ -220,7 +220,10 @@ const TYPE_RANGES: {
220
Uint8: { min: 0, max: 255 },
221
Uint16: { min: 0, max: 65535 },
222
Uint32: { min: 0, max: 4294967295 },
223
- BigInt64: { min: BigInt("-9223372036854775808"), max: BigInt("9223372036854775807") },
+ BigInt64: {
224
+ min: BigInt("-9223372036854775808"),
225
+ max: BigInt("9223372036854775807"),
226
+ },
227
BigUint64: { min: BigInt("0"), max: BigInt("18446744073709551615") },
228
Float32: { min: -3.4e38, max: 3.4e38 },
229
Float64: { min: -1.8e308, max: 1.8e308 },
0 commit comments