diff --git a/pkg/policy/limits/constants.go b/pkg/policy/limits/constants.go new file mode 100644 index 0000000..c2d1fd5 --- /dev/null +++ b/pkg/policy/limits/constants.go @@ -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 +)