/*! * numeral.js language configuration * language : french (fr-ch) * author : Adam Draper : https://github.com/adamwdraper */(function(){varlanguage={delimiters:{thousands:'\'',decimal:'.'},abbreviations:{thousand:'k',million:'m',billion:'b',trillion:'t'},ordinal:function(number){returnnumber===1?'er':'e';},currency:{symbol:'CHF'}};// Nodeif(typeofmodule!=='undefined'&&module.exports){module.exports=language;}// Browserif(typeofwindow!=='undefined'&&this.numeral&&this.numeral.language){this.numeral.language('fr-ch',language);}}());