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
Given the node version. When I declare an array in the REPL console. The representation shows an empty array always. Please note this does not happen in the pure node console, but instead when I run the REPL from within my debugger. i.e node debug index.js > repl.
Even when I declare a simple array ( just to report that this is not a very complex nesting representation) like: > [1]
the console shows it as > []
I am aware of util.inspect , and it shows the complete array, but the normal representation is just too confusing. I would be glad if this can be inspected or resolved if required.
The text was updated successfully, but these errors were encountered:
Hi! Thanks for the report, this is a known bug (#6444) and has already been fixed (#6448) – upgrading to Node v6.1.0 or v6.2.0 should resolve this problem for you.
Given the node version. When I declare an array in the REPL console. The representation shows an empty array always. Please note this does not happen in the pure node console, but instead when I run the REPL from within my debugger. i.e
node debug index.js
> repl
.Even when I declare a simple array ( just to report that this is not a very complex nesting representation) like:
> [1]
the console shows it as
> []
I am aware of util.inspect , and it shows the complete array, but the normal representation is just too confusing. I would be glad if this can be inspected or resolved if required.
The text was updated successfully, but these errors were encountered: