diff options
| author | Fridon <[email protected]> | 2022-06-23 09:38:58 +0400 |
|---|---|---|
| committer | Fridon <[email protected]> | 2022-06-23 09:38:58 +0400 |
| commit | 660b0439ba9f95f454d73e17575912c021c1efda (patch) | |
| tree | 2ea26e8442f8e08419308b99c7cee74a7edb42e5 /src/util/logger.ts | |
| parent | d1950145c013af874b8cb9faeacd49d2b7c633b5 (diff) | |
| download | countryfetch-660b0439ba9f95f454d73e17575912c021c1efda.tar.xz countryfetch-660b0439ba9f95f454d73e17575912c021c1efda.zip | |
change population type to string in FetchedCountries
Diffstat (limited to 'src/util/logger.ts')
| -rw-r--r-- | src/util/logger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/logger.ts b/src/util/logger.ts index 52965c8..2e9045a 100644 --- a/src/util/logger.ts +++ b/src/util/logger.ts @@ -30,7 +30,7 @@ export class Logger { nano.green("\nRegion:\t\t"), country.region, nano.green("\nPopulation:\t"), - country.population.toLocaleString(), + country.population, nano.green("\nCurrencies:\t"), country.currencies ); |
