numbro
Version:
Format and manipulate numbers.
36 lines (31 loc) • 731 B
JavaScript
function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}
/*!
* numbro.js language configuration
* language : Chinese simplified
* locale: Singapore
* author : Tim McIntosh (StayinFront NZ)
*/
var zhSG = {
languageTag: "zh-SG",
delimiters: {
thousands: ",",
decimal: "."
},
abbreviations: {
thousand: "千",
million: "百万",
billion: "十亿",
trillion: "兆"
},
ordinal: function() {
return ".";
},
currency: {
symbol: "$",
code: "SGD"
}
};
var zhSG$1 = /*@__PURE__*/getDefaultExportFromCjs(zhSG);
export { zhSG$1 as default };