/*! * numeral.js language configuration * language : simplified chinese * author : badplum : https://github.com/badplum */ (function () { var language = { delimiters: { thousands: ',', decimal: '.' }, abbreviations: { thousand: '千', million: '百万', billion: '十亿', trillion: '兆' }, ordinal: function (number) { return '.'; }, currency: { symbol: '¥' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('chs', language); } }());