dashboard-ui/modules/polyfills/numberformat.js
2023-08-31 15:30:17 +02:00

1 line
404 B
JavaScript

globalThis.Intl||(globalThis.Intl={}),globalThis.Intl.NumberFormat||(globalThis.Intl.NumberFormat=function(locales,options){this.options=options||{}},globalThis.Intl.NumberFormat.prototype.format=function(value){var options=this.options;return value=(options.maximumFractionDigits?parseFloat(value.toFixed(options.maximumFractionDigits)):value).toString(),"percent"===options.style&&(value+="%"),value});