prettyify country codes
All checks were successful
deploy / deploy (push) Successful in 59s

This commit is contained in:
Lee
2023-10-22 06:22:47 +01:00
parent 21cb7aaf89
commit e71ffbdd95
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,15 @@
let regionNames = new Intl.DisplayNames(["en"], { type: "region" });
export function isProduction() {
return process.env.NODE_ENV === "production";
}
/**
* Returns the normalized region name
*
* @param region the region to normalize
* @returns the normalized region name
*/
export function normalizedRegionName(region: string) {
return regionNames.of(region);
}