Sha256: d6ec1ab9aff8985d7f0111c163b60d2c34cc698daf83879d00490c5e7deeb673
Contents?: true
Size: 875 Bytes
Versions: 16
Compression:
Stored size: 875 Bytes
Contents
/*! * numeral.js language configuration * language : German in Switzerland (de-ch) * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky) */ (function () { var language = { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'k', million: 'm', billion: 'b', trillion: 't' }, ordinal: function (number) { return '.'; }, currency: { symbol: 'CHF' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('de-ch', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems