UNPKG

875 BJavaScriptView Raw
1/*!
2 * numeral.js language configuration
3 * language : German in Switzerland (de-ch)
4 * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
5 */
6(function () {
7 var language = {
8 delimiters: {
9 thousands: ' ',
10 decimal: ','
11 },
12 abbreviations: {
13 thousand: 'k',
14 million: 'm',
15 billion: 'b',
16 trillion: 't'
17 },
18 ordinal: function (number) {
19 return '.';
20 },
21 currency: {
22 symbol: 'CHF'
23 }
24 };
25
26 // Node
27 if (typeof module !== 'undefined' && module.exports) {
28 module.exports = language;
29 }
30 // Browser
31 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
32 this.numeral.language('de-ch', language);
33 }
34}());
\No newline at end of file