We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repl demo using sample from docs:
> console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]); ┌─────────┬──────────────────┐ │ (index) │ Values │ ├─────────┼──────────────────┤ │ 0 │ { a: 1, b: 'Y' } │ │ 1 │ { a: 'Z', b: 2 } │ └─────────┴──────────────────┘
Expected a three column table with headings ['(index)', 'a', 'b'], per docs:
console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]); // ┌─────────┬─────┬─────┐ // │ (index) │ a │ b │ // ├─────────┼─────┼─────┤ // │ 0 │ 1 │ 'Y' │ // │ 1 │ 'Z' │ 2 │ // └─────────┴─────┴─────┘
The text was updated successfully, but these errors were encountered:
@BurtHarris This will be fixed by #20323.
Sorry, something went wrong.
Fixed in 99d56a4 which should be in the next release of Node.js 10.x.
Thanks @Trott
No branches or pull requests
Repl demo using sample from docs:
Expected a three column table with headings ['(index)', 'a', 'b'], per docs:
The text was updated successfully, but these errors were encountered: