Sha256: 1abcde7fd25855e071139adaaf4010ed43e2066d7817a7ba96779f8dfbacd149
Contents?: true
Size: 859 Bytes
Versions: 16
Compression:
Stored size: 859 Bytes
Contents
/*! * numeral.js language configuration * language : thai (th) * author : Sathit Jittanupat : https://github.com/jojosati */ (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('th', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems