(defn clojure-source-file? "Returns true if file is a normal file with a .clj extension." [^File file] (and (.isFile file) (.endsWith (.getName file) ".clj")))
Comments top
No comments for clojure-source-file?. Log in to add a comment.