(defn attr-values "Returns the whitespace-separated values of the specified attr as a set or nil." [node attr] (when-let [v (-> node :attrs (get attr))] (set (re-seq #"\S+" v))))
Comments top
No comments for attr-values. Log in to add a comment.