source: node_modules/victory-vendor/lib-vendor/d3-format/src/defaultLocale.js

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 642 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = defaultLocale;
7exports.formatPrefix = exports.format = void 0;
8var _locale = _interopRequireDefault(require("./locale.js"));
9function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10var locale;
11var format;
12var formatPrefix;
13defaultLocale({
14 thousands: ",",
15 grouping: [3],
16 currency: ["$", ""]
17});
18function defaultLocale(definition) {
19 locale = (0, _locale.default)(definition);
20 exports.format = format = locale.format;
21 exports.formatPrefix = formatPrefix = locale.formatPrefix;
22 return locale;
23}
Note: See TracBrowser for help on using the repository browser.