numbro
Version:
Format and manipulate numbers.
74 lines (67 loc) • 1.63 kB
JavaScript
function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}
/*!
* numeral.js language configuration
* language : Romanian
* author : Andrei Alecu https://github.com/andreialecu
*/
var roRO = {
languageTag: "ro-RO",
delimiters: {
thousands: ".",
decimal: ","
},
abbreviations: {
thousand: "mii",
million: "mil",
billion: "mld",
trillion: "bln"
},
ordinal: function() {
return ".";
},
currency: {
symbol: " lei",
position: "postfix",
code: "RON"
},
currencyFormat: {
thousandSeparated: true,
totalLength: 4,
spaceSeparated: true,
spaceSeparatedCurrency: true,
average: true
},
formats: {
fourDigits: {
totalLength: 4,
spaceSeparated: true,
average: true
},
fullWithTwoDecimals: {
output: "currency",
mantissa: 2,
spaceSeparated: true,
thousandSeparated: true
},
fullWithTwoDecimalsNoCurrency: {
mantissa: 2,
thousandSeparated: true
},
fullWithNoDecimals: {
output: "currency",
spaceSeparated: true,
thousandSeparated: true,
mantissa: 0
}
}
};
/*!
* numbro.js language configuration
* language : Romanian (ro)
* author : Tim McIntosh (StayinFront NZ)
*/
var ro = roRO;
var ro$1 = /*@__PURE__*/getDefaultExportFromCjs(ro);
export { ro$1 as default };