(defn
set-repl-pprint
"This method gives you the ability to turn the pretty printing of\n the REPL's return value on and off.\n\n (figwheel.client/set-repl-pprint false)\n\n NOTE: This is a persistent setting, meaning that it will persist\n through browser reloads."
[b]
(assert (or (true? b) (false? b)))
(utils/persistent-config-set! :figwheel-repl-pprint b))