| 2 | const { cyan, dim } = require('chalk'); |
| 3 | |
| 4 | const infoStates = () => |
| 5 | console.log( |
| 6 | dim(` |
| 7 | \n${sym.info} ${cyan(`KEY:`)} |
| 8 | ${dim(`❯ `)}${cyan(`State:`)} Name of the state |
| 9 | ${dim(`❯ `)}${cyan(`Cases:`)} Total number of cases in a country |
| 10 | ${dim(`❯ `)}${cyan(`Cases (today):`)} Cases in 24 hours GMT/UTC |
| 11 | ${dim(`❯ `)}${cyan(`Deaths:`)} Total number of deaths in a state |
| 12 | ${dim(`❯ `)}${cyan(`Deaths (today):`)} Deaths in 24 hours GMT/UTC |
| 13 | ${dim(`❯ `)}${cyan(`Recovered:`)} Total number of recovered people |
| 14 | ${dim(`❯ `)}${cyan(`Active:`)} Total number of active patients |
| 15 | `) |
| 16 | ); |
| 17 | |
| 18 | const infoCountries = () => |
| 19 | console.log( |