numbro
Version:
Format and manipulate numbers.
65 lines (60 loc) • 1.47 kB
JavaScript
function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}
/*!
* numbro.js language configuration
* language: Norwegian Bokmål
* locale: Norway
* author : Benjamin Van Ryseghem
*/
var nbNO = {
languageTag: "nb-NO",
delimiters: {
thousands: " ",
decimal: ","
},
abbreviations: {
thousand: "t",
million: "M",
billion: "md",
trillion: "b"
},
ordinal: () => "",
currency: {
symbol: "kr",
position: "postfix",
code: "NOK"
},
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
}
}
};
var nbNO$1 = /*@__PURE__*/getDefaultExportFromCjs(nbNO);
export { nbNO$1 as default };