prn-str-with-opts

functionsince v0.0-1011Edit
(prn-str-with-opts objs opts)

Source docstring:
Same as pr-str-with-opts followed by (newline)
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn prn-str-with-opts
  [objs opts]
  (if (empty? objs)
    "\n"
    (let [sb (pr-sb-with-opts objs opts)]
      (.append sb \newline)
      (str sb))))