EmbyCrackedClient/web/modules/polyfills/numberformat.js

1 line
404 B
JavaScript
Raw Normal View History

2025-06-25 11:46:04 +08:00
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});