support setting decimal separator and digit grouping symbol

This commit is contained in:
MaysWind
2024-06-29 17:12:22 +08:00
parent d9c8142c51
commit 399413a270
51 changed files with 1280 additions and 582 deletions
+4 -4
View File
@@ -5,11 +5,11 @@ const allTransactionTypes = {
Transfer: 4
};
const minAmount = '-999999999.99';
const maxAmount = '999999999.99';
const minAmountNumber = -99999999999; // -999999999.99
const maxAmountNumber = 99999999999; // 999999999.99
export default {
allTransactionTypes: allTransactionTypes,
minAmount: minAmount,
maxAmount: maxAmount,
minAmountNumber: minAmountNumber,
maxAmountNumber: maxAmountNumber,
};