Skip to content

Commit

Permalink
add constants.go
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiobozzo committed Nov 29, 2024
1 parent ff79bbb commit bff482f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkg/policy/limits/constants.go
Original file line number Diff line number Diff line change
@@ -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
)

0 comments on commit bff482f

Please sign in to comment.