Comparing version 2.3.3 to 2.3.4
@@ -0,1 +1,7 @@ | ||
### 2.3.4 | ||
* fix: correct isTTY logic for colorization - **[@dbushong](https://github.com/dbushong)** [#37](https://github.com/groupon/assertive/pull/37) | ||
- [`1860ca3`](https://github.com/groupon/assertive/commit/1860ca3402fb8960ec037fdadcd57fb2ef9dfc0c) **fix:** correct isTTY logic for colorization | ||
### 2.3.3 | ||
@@ -2,0 +8,0 @@ |
@@ -91,3 +91,3 @@ 'use strict'; | ||
if (global.process && process.isTTY && process.isTTY()) { | ||
if (!(global.process && process.stdout && process.stdout.isTTY)) { | ||
red = function red(x) { | ||
@@ -94,0 +94,0 @@ return '' + x; |
{ | ||
"name": "assertive", | ||
"version": "2.3.3", | ||
"version": "2.3.4", | ||
"description": "Assertive is a terse yet expressive assertion library", | ||
@@ -5,0 +5,0 @@ "license": "BSD-3-Clause", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
73633