Skip to content

Instantly share code, notes, and snippets.

@iwillig
Created July 14, 2015 20:30
Show Gist options
  • Save iwillig/a73a2ca74a1420833ac1 to your computer and use it in GitHub Desktop.
Save iwillig/a73a2ca74a1420833ac1 to your computer and use it in GitHub Desktop.
(defn file? [x] (instance? java.io.File x))
(defn multipart? [params]
(every?
(fn [x]
(cond
(file? x) true
(map? x) (some file? (vals x))
:else false))
(vals params)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment