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))