0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-16 01:31:22 -05:00

Add node equality checker function.

This commit is contained in:
Andrey Antukh 2016-05-18 21:47:33 +03:00
parent 8fa46d5257
commit 75995c8cf7
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -55,3 +55,7 @@
or checkbox is checked or not."
[node]
(.-checked node))
(defn ^boolean equals?
[node-a node-b]
(.isEqualNode node-a node-b))