binaryage/cljs-devtools

Boolean values in maps print as null

jmlsf opened this issue · 0 comments

jmlsf commented

This:

(js/console.log {:a false})

Prints:

:a | null

Even though:

(js/console.log {:a true})

Prints:

:a | true

Am I missing something or is it weird to print null for false and true for true?