Skip to content

Instantly share code, notes, and snippets.

@laser
Created December 14, 2014 23:08
Show Gist options
  • Save laser/0c8d04bcc1bc5e45c940 to your computer and use it in GitHub Desktop.
Save laser/0c8d04bcc1bc5e45c940 to your computer and use it in GitHub Desktop.
Validator composition
(defn validate-note
"Ensure that the provided note is valid."
[note]
(let [[note error] (ensure-text-presence note)
[note error] (if (nil? error) (ensure-text-length note) [nil error])]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment