pr-str-with-opts

functionsince v0.0-927Edit
(pr-str-with-opts objs opts)

Source docstring:
Prints a sequence of objects to a string, observing all the
options given in opts
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn pr-str-with-opts
  [objs opts]
  (if (empty? objs)
    ""
    (str (pr-sb-with-opts objs opts))))