annotate-code
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -5,3 +5,3 @@ "use strict"; | ||
// colors | ||
const isTTY = typeof process !== undefined && process.stdout.isTTY; | ||
const isTTY = typeof process !== 'undefined' && process.stdout.isTTY; | ||
const BOLD = isTTY ? '\x1b[1m' : ''; | ||
@@ -8,0 +8,0 @@ const RED = isTTY ? BOLD + '\x1b[31m' : ''; |
// colors | ||
const isTTY = typeof process !== undefined && process.stdout.isTTY; | ||
const isTTY = typeof process !== 'undefined' && process.stdout.isTTY; | ||
const BOLD = isTTY ? '\x1b[1m' : ''; | ||
@@ -4,0 +4,0 @@ const RED = isTTY ? BOLD + '\x1b[31m' : ''; |
@@ -6,3 +6,3 @@ { | ||
"description": "beautifully annotate source code with a message, given an index, like a parser or compiler", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"license": "MIT", | ||
@@ -9,0 +9,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
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
31999