We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42964f6 commit 7b11337Copy full SHA for 7b11337
src/common/constants.js
@@ -0,0 +1,19 @@
1
+export const DECIMAL = "decimal";
2
+export const CURRENCY = "currency";
3
+export const ACCOUNTING = "accounting";
4
+export const PERCENT = "percent";
5
+export const SCIENTIFIC = "scientific";
6
+
7
+//rename to placeholder
8
+export const CURRENCY_SYMBOL = "$";
9
+export const PERCENT_SYMBOL = "%";
10
+export const NUMBER_SYMBOL = "n";
11
12
+export const LIST_SEPARATOR = ";";
13
+export const GROUP_SEPARATOR = ",";
14
15
+export const POINT = ".";
16
+export const EMPTY = "";
17
18
+export const DEFAULT_LOCALE = "en";
19
0 commit comments