print-map

functionsince v0.0-2120Edit
(print-map m print-one writer opts)

Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn print-map [m print-one writer opts]
  (let [ns&lift-map (when (map? m)
                      (lift-ns m))
        ns (some-> ns&lift-map (aget 0))]
    (if ns
      (print-prefix-map (str_ "#:" ns) (aget ns&lift-map 1) print-one writer opts)
      (print-prefix-map nil m print-one writer opts))))