add constants.go
This commit is contained in:
8
pkg/policy/limits/constants.go
Normal file
8
pkg/policy/limits/constants.go
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
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
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user