(defn indent-lines "Indent each line of string s to level." [level s] (when-not (nil? s) (->> s (re-split #"\n") (map #(indent level %)) (str-join "\n"))))
Comments top
No comments for indent-lines. Log in to add a comment.