diff --git a/common/src/app/common/spec.cljc b/common/src/app/common/spec.cljc index acb3c698b4..5a8c23a385 100644 --- a/common/src/app/common/spec.cljc +++ b/common/src/app/common/spec.cljc @@ -29,8 +29,10 @@ (def uuid-rx #"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") -(def max-safe-int (int 1e6)) -(def min-safe-int (int -1e6)) +;; Integer/MAX_VALUE +(def max-safe-int 2147483647) +;; Integer/MIN_VALUE +(def min-safe-int -2147483648) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; DEFAULT SPECS