numbro
Version:
Format and manipulate numbers.
58 lines (56 loc) • 1.32 kB
JavaScript
/*!
* numbro.js language configuration
* language : Thai
* locale : Thailand
* author : Sathit Jittanupat : https://github.com/jojosati
*/
module.exports = {
languageTag: "th-TH",
delimiters: {
thousands: ",",
decimal: "."
},
abbreviations: {
thousand: "พัน",
million: "ล้าน",
billion: "พันล้าน",
trillion: "ล้านล้าน"
},
ordinal: function() {
return ".";
},
currency: {
symbol: "฿",
position: "postfix",
code: "THB"
},
currencyFormat: {
thousandSeparated: true,
totalLength: 4,
spaceSeparated: 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
}
}
};