numbro
Version:
Format and manipulate numbers.
28 lines (26 loc) • 491 B
JavaScript
/*!
* numbro.js language configuration
* language : Italian
* locale: Switzerland
* author : Tim McIntosh (StayinFront NZ)
*/
module.exports = {
languageTag: "it-CH",
delimiters: {
thousands: "'",
decimal: "."
},
abbreviations: {
thousand: "mila",
million: "mil",
billion: "b",
trillion: "t"
},
ordinal: function() {
return "°";
},
currency: {
symbol: "CHF",
code: "CHF"
}
};