You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Since we're using flatted , the stringified output can be weird to read as a human; for example: flatted.stringify([123]) == "[[123]]" or flatted.stringify([[123]]) == [["1"],[123]]`
Describe the solution you'd like
Use util.inspect to visualize these cases instead.
The text was updated successfully, but these errors were encountered:
gagik
changed the title
Better visualization for mixed and objects
Better visualization for mixed and dictionaries
Jun 11, 2024
Is your feature request related to a problem? Please describe.
Since we're using flatted , the stringified output can be weird to read as a human; for example:
flatted.stringify([123]) == "[[123]]"
orflatted.stringify([[123]]) ==
[["1"],[123]]`Describe the solution you'd like
Use
util.inspect
to visualize these cases instead.The text was updated successfully, but these errors were encountered: