numbro
Version:
Format and manipulate numbers.
26 lines (24 loc) • 485 B
JavaScript
/*!
* numbro.js language configuration
* language : Serbian (sr)
* country : Serbia (Cyrillic)
* author : Tim McIntosh (StayinFront NZ)
*/
module.exports = {
languageTag: "sr-Cyrl-RS",
delimiters: {
thousands: ".",
decimal: ","
},
abbreviations: {
thousand: "тыс.",
million: "млн",
billion: "b",
trillion: "t"
},
ordinal: () => ".",
currency: {
symbol: "RSD",
code: "RSD"
}
};