0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-12 18:18:24 -05:00

Reduce the max and min safe-int values to 1m.

This commit is contained in:
Andrey Antukh 2020-11-30 10:33:38 +01:00 committed by Hirunatan
parent 0416ce8da6
commit 39db88c533

View file

@ -121,8 +121,8 @@
(s/def ::point gpt/point?)
(s/def ::id ::uuid)
(def max-safe-int 9007199254740991)
(def min-safe-int -9007199254740991)
(def max-safe-int 1000000)
(def min-safe-int -1000000)
(s/def ::safe-integer
#(and