Sha256: 3d686ffe05fb8b10e1a2e90dc114d56c9cccbe93d87bfd8a9def470dbb1f1f79
Contents?: true
Size: 826 Bytes
Versions: 16
Compression:
Stored size: 826 Bytes
Contents
/*! * numeral.js language configuration * language : french (fr-ch) * author : Adam Draper : https://github.com/adamwdraper */ (function () { var language = { delimiters: { thousands: '\'', decimal: '.' }, abbreviations: { thousand: 'k', million: 'm', billion: 'b', trillion: 't' }, ordinal : function (number) { return number === 1 ? 'er' : 'e'; }, 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('fr-ch', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems