Sha256: 669d27c897b65ccf86450ae6f0408779592c09ec51de4ccf1ed10545de365af8
Contents?: true
Size: 802 Bytes
Versions: 16
Compression:
Stored size: 802 Bytes
Contents
/*! * numeral.js language configuration * language : italian Italy (it) * author : Giacomo Trombi : http://cinquepunti.it */ (function () { var language = { delimiters: { thousands: '.', decimal: ',' }, abbreviations: { thousand: 'mila', million: 'mil', billion: 'b', trillion: 't' }, 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('it', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems