Icard/angular-clarity-master(work.../node_modules/numeral/locales/de.js

33 lines
889 B
JavaScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
// numeral.js locale configuration
// locale : German (de) generally useful in Germany, Austria, Luxembourg, Belgium
// author : Marco Krage : https://github.com/sinky
(function (global, factory) {
if (typeof define === 'function' && define.amd) {
define(['../numeral'], factory);
} else if (typeof module === 'object' && module.exports) {
factory(require('../numeral'));
} else {
factory(global.numeral);
}
}(this, function (numeral) {
numeral.register('locale', 'de', {
delimiters: {
thousands: ' ',
decimal: ','
},
abbreviations: {
thousand: 'k',
million: 'm',
billion: 'b',
trillion: 't'
},
ordinal: function (number) {
return '.';
},
currency: {
symbol: '€'
}
});
}));