0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

Fix uuid regular experession.

This commit is contained in:
Andrey Antukh 2016-11-06 18:03:50 +01:00
parent 89779bf658
commit 3cba2cda12
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -83,7 +83,7 @@
;; --- String utils
(def +uuid-re+
#"^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$")
#"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$")
(defn uuid-str?
[v]