(pprint-json x & options)
DEPRECATED; replaced by 'pprint'.
Pretty-prints JSON representation of x to *out*.
Valid options are:
:escape-unicode false
to turn off \uXXXX escapes of Unicode characters.
Source
(defn pprint-json
"DEPRECATED; replaced by 'pprint'.
Pretty-prints JSON representation of x to *out*.
Valid options are:
:escape-unicode false
to turn off \\uXXXX escapes of Unicode characters."
[x & options]
(apply pprint x options))