Skip to content

Instantly share code, notes, and snippets.

@rightfold
Last active August 29, 2015 13:56
Show Gist options
  • Save rightfold/32ce5d24f9475e5259e8 to your computer and use it in GitHub Desktop.
Save rightfold/32ce5d24f9475e5259e8 to your computer and use it in GitHub Desktop.
(defn validate-input [input]
(clojure.set/union
(if (empty? (:title input)) #{:empty-title} #{})
(if (empty? (:description input)) #{:empty-description} #{})))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment