Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

covid19-cli

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

covid19-cli - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

6

cli.js

@@ -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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc