Skip to content

Commit 7b11337

Browse files
danielkaradachkigyoshev
authored andcommitted
refactor: add common constants
1 parent 42964f6 commit 7b11337

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/common/constants.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)