0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 19:41:27 -05:00

Improve parse-int util function.

It now accept a default value in case of parsing
return NaN.
This commit is contained in:
Andrey Antukh 2016-01-06 21:05:07 +02:00
parent 046360bd14
commit da5d9c2422

View file

@ -42,5 +42,10 @@
(r/read-string v))
(defn parse-int
[v]
(js/parseInt v 10))
([v]
(js/parseInt v 10))
([v default]
(let [v (js/parseInt v 10)]
(if (or (not v) (nan? v))
default
v))))