Removes needless "|| ''".
This commit is contained in:
parent
425e3a7ee8
commit
dde7287192
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -12,7 +12,7 @@ function Chalk(options) {
|
|||
}
|
||||
|
||||
// use bright blue on Windows as the normal blue color is illegible
|
||||
if (process.platform === 'win32' && !/^xterm/i.test(process.env.TERM || '')) {
|
||||
if (process.platform === 'win32' && !/^xterm/i.test(process.env.TERM)) {
|
||||
ansiStyles.blue.open = '\u001b[94m';
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue