covid19-cli
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -26,5 +26,5 @@ #!/usr/bin/env node | ||
const getValue = country => [ | ||
chalk.yellow.bold(country.totalConfirmed), | ||
chalk.green.bold(country.totalRecovered), | ||
chalk.red.bold(country.totalDeaths) | ||
chalk.yellow.bold(country.totalConfirmed ? country.totalConfirmed : 0), | ||
chalk.green.bold(country.totalRecovered ? country.totalRecovered : 0), | ||
chalk.red.bold(country.totalDeaths ? country.totalDeaths : 0) | ||
]; | ||
@@ -31,0 +31,0 @@ |
{ | ||
"name": "covid19-cli", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "COVID-19 Tracker CLI", | ||
@@ -5,0 +5,0 @@ "bin": { |
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
97825