numbro
Version:
Format and manipulate numbers.
35 lines (30 loc) • 683 B
JavaScript
function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}
/*!
* numbro.js language configuration
* language : Greek (el)
* author : Tim McIntosh (StayinFront NZ)
*/
var el = {
languageTag: "el",
delimiters: {
thousands: ".",
decimal: ","
},
abbreviations: {
thousand: "χ",
million: "ε",
billion: "δ",
trillion: "τ"
},
ordinal: function() {
return ".";
},
currency: {
symbol: "€",
code: "EUR"
}
};
var el$1 = /*@__PURE__*/getDefaultExportFromCjs(el);
export { el$1 as default };