[console.table] Highlight rows in Terminal #11173
truongan07
started this conversation in
Ideas
Replies: 2 comments
-
Can i use Bun.color to set background of rows in terminal ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Bun.inspect.table is very useful. However, how to set red color of text in odd row and green color of text in even row console.log(
Bun.inspect.table(
[
{ a: 1, b: 2, c: 3 },
{ a: 4, b: 5, c: 6 },
],
{
colors: true,
},
),
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions