aboutsummaryrefslogtreecommitdiff
path: root/src/countries.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/countries.ts')
-rw-r--r--src/countries.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/countries.ts b/src/countries.ts
index 4b0a0c9..974edec 100644
--- a/src/countries.ts
+++ b/src/countries.ts
@@ -108,7 +108,8 @@ export class Countries {
region: country.region,
subregion: country.subregion,
capitalLatLng: country.capitalInfo.latlng.join("/"),
- timezones: country.timezones.join("\n\t\t "),
+ timezones: country.timezones.join("\n\t\t\t "),
+ tld: country.tld.join(" | "),
currencies,
languages,
});
@@ -134,7 +135,7 @@ export class Countries {
const currency = currencies[currencyAbbr];
result.push(`${currency.name} [${currency.symbol}](${currencyAbbr})`);
}
- return result.join("\n\t\t ");
+ return result.join("\n\t\t\t ");
}
private extractLanguages(languages: Languages) {