UNPKG

361 BJavaScriptView Raw
1import formatLocale from "./locale";
2
3var locale;
4export var format;
5export var formatPrefix;
6
7defaultLocale({
8 decimal: ".",
9 thousands: ",",
10 grouping: [3],
11 currency: ["$", ""]
12});
13
14export default function defaultLocale(definition) {
15 locale = formatLocale(definition);
16 format = locale.format;
17 formatPrefix = locale.formatPrefix;
18 return locale;
19}