Skip to content

Commit b8d5ba3

Browse files
committed
Format Fix
1 parent b0bc20b commit b8d5ba3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/binary_parser.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,10 @@ const TYPE_RANGES: {
220220
Uint8: { min: 0, max: 255 },
221221
Uint16: { min: 0, max: 65535 },
222222
Uint32: { min: 0, max: 4294967295 },
223-
BigInt64: { min: BigInt("-9223372036854775808"), max: BigInt("9223372036854775807") },
223+
BigInt64: {
224+
min: BigInt("-9223372036854775808"),
225+
max: BigInt("9223372036854775807"),
226+
},
224227
BigUint64: { min: BigInt("0"), max: BigInt("18446744073709551615") },
225228
Float32: { min: -3.4e38, max: 3.4e38 },
226229
Float64: { min: -1.8e308, max: 1.8e308 },

0 commit comments

Comments
 (0)