Skip to content

Instantly share code, notes, and snippets.

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