Files
ucan/pkg/policy/limits/constants.go
2024-11-29 13:04:14 +01:00

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
)