|
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 |
|
|---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
|---|
| 4 | value: true
|
|---|
| 5 | });
|
|---|
| 6 | exports.default = defaultLocale;
|
|---|
| 7 | exports.formatPrefix = exports.format = void 0;
|
|---|
| 8 | var _locale = _interopRequireDefault(require("./locale.js"));
|
|---|
| 9 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|---|
| 10 | var locale;
|
|---|
| 11 | var format;
|
|---|
| 12 | var formatPrefix;
|
|---|
| 13 | defaultLocale({
|
|---|
| 14 | thousands: ",",
|
|---|
| 15 | grouping: [3],
|
|---|
| 16 | currency: ["$", ""]
|
|---|
| 17 | });
|
|---|
| 18 | function 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.