/*! * numeral.js language configuration * language : Finnish * author : Sami Saada : https://github.com/samitheberber */(function(){varlanguage={delimiters:{thousands:' ',decimal:','},abbreviations:{thousand:'k',million:'M',billion:'G',trillion:'T'},ordinal:function(number){return'.';},currency:{symbol:'€'}};// Nodeif(typeofmodule!=='undefined'&&module.exports){module.exports=language;}// Browserif(typeofwindow!=='undefined'&&this.numeral&&this.numeral.language){this.numeral.language('fi',language);}}());