Sha256: 72db13c4cbf1139cbf564ab8f18af7490b1b4dc669d14204f197dde13913dfcb
Contents?: true
Size: 843 Bytes
Versions: 16
Compression:
Stored size: 843 Bytes
Contents
/*! * 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); } }());
Version data entries
16 entries across 16 versions & 1 rubygems