Skip to content

Commit 5ac9553

Browse files
committed
Change isTTY flow to appease Flow
1 parent e1fecc0 commit 5ac9553

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/supports-color.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function supportsColor() /*: boolean */ {
3232
return true;
3333
}
3434

35-
if (!process.stdout.isTTY) {
35+
if (process.stdout.isTTY !== true) {
3636
return false;
3737
}
3838

0 commit comments

Comments
 (0)