@pelcro/react-pelcro-js 3.2.0-beta.23 → 3.2.0-beta.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -6478,7 +6478,7 @@ const ZERO_DECIMAL_CURRENCIES = ["BIF", "CLP", "DJF", "GNF", "JPY", "KMF", "KRW"
|
|
|
6478
6478
|
* @return {boolean}
|
|
6479
6479
|
*/
|
|
6480
6480
|
|
|
6481
|
-
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
|
|
6481
|
+
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency.toUpperCase());
|
|
6482
6482
|
const sortCountries = countries => {
|
|
6483
6483
|
const sortable = [];
|
|
6484
6484
|
delete countries.CA;
|
package/dist/index.esm.js
CHANGED
|
@@ -6448,7 +6448,7 @@ const ZERO_DECIMAL_CURRENCIES = ["BIF", "CLP", "DJF", "GNF", "JPY", "KMF", "KRW"
|
|
|
6448
6448
|
* @return {boolean}
|
|
6449
6449
|
*/
|
|
6450
6450
|
|
|
6451
|
-
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
|
|
6451
|
+
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency.toUpperCase());
|
|
6452
6452
|
const sortCountries = countries => {
|
|
6453
6453
|
const sortable = [];
|
|
6454
6454
|
delete countries.CA;
|