numbro
Version:
Format and manipulate numbers.
36 lines (31 loc) • 705 B
JavaScript
function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}
/*!
* numbro.js language configuration
* language : German
* locale: Austria
* author : Tim McIntosh (StayinFront NZ)
*/
var deAT = {
languageTag: "de-AT",
delimiters: {
thousands: " ",
decimal: ","
},
abbreviations: {
thousand: "k",
million: "m",
billion: "b",
trillion: "t"
},
ordinal: function() {
return ".";
},
currency: {
symbol: "€",
code: "EUR"
}
};
var deAT$1 = /*@__PURE__*/getDefaultExportFromCjs(deAT);
export { deAT$1 as default };