We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e032f commit 3e8e152Copy full SHA for 3e8e152
lib/util.js
@@ -333,9 +333,10 @@ inspect.colors = Object.assign(Object.create(null), {
333
});
334
335
// Don't use 'blue' not visible on cmd.exe
336
+const windows = process.platform === 'win32';
337
inspect.styles = Object.assign(Object.create(null), {
338
'special': 'cyan',
- 'number': 'yellow',
339
+ 'number': windows ? 'yellow' : 'blue',
340
'boolean': 'yellow',
341
'undefined': 'grey',
342
'null': 'bold',
0 commit comments