9 lines
234 B
Go
9 lines
234 B
Go
package limits
|
|
|
|
const (
|
|
// MaxInt53 represents the maximum safe integer in JavaScript (2^53 - 1)
|
|
MaxInt53 = 9007199254740991
|
|
// MinInt53 represents the minimum safe integer in JavaScript (-2^53 + 1)
|
|
MinInt53 = -9007199254740991
|
|
)
|