Skip to content

Commit

Permalink
Fix #11 and update dependencies - thanks @kylem123
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodp committed Mar 20, 2023
1 parent ce62a32 commit 89eca07
Show file tree
Hide file tree
Showing 3 changed files with 6,772 additions and 544 deletions.
2 changes: 2 additions & 0 deletions generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ const inclusionsOrFixes = [
{ countryCode: 'AQ', currencyCode: 'USD' },
// According to Google, Palestine uses the currency 'New Israeli Sheqel', code 'ILS'
{ countryCode: 'PS', currencyCode: 'ILS' },
// According to Wikipedia, Turkey uses 'Turkish lira', code 'TRY'. Thanks @kylem123
{ countryCode: 'TR', currencyCode: 'TRY' },
// According to ISO 4217, South Korea's (country code KR) uses currency 'KRW'. Thanks @MunjaeLee for pointing it out.
{ countryCode: 'KR', currencyCode: 'KRW' },
// According to Wikipedia, Switzerland uses 'CHF'. Thanks @betabong for pointing it out.
Expand Down
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ export default {
TM: 'TMT',
TN: 'TND',
TO: 'TOP',
TR: 'TRY',
TT: 'TTD',
TV: 'AUD',
TW: 'TWD',
Expand Down Expand Up @@ -247,5 +246,6 @@ export default {
LA: 'LAK',
MK: 'MKD',
AQ: 'USD',
PS: 'ILS'
PS: 'ILS',
TR: 'TRY'
}
Loading

0 comments on commit 89eca07

Please sign in to comment.