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