можете помочь исправить ошибку
const getTimeString = (duration, lang = 'en') => {
const hours = Math.floor(Math.abs(duration) / 3_600_000);
const minutes = Math.floor(Math.abs(duration) / 60_000) - hours * 60;
return (
(duration < 0 ? '-' : '') +
(hours
? new Intl.NumberFormat(lang, {
style: 'unit',
unit: 'hour',
unitDisplay: 'short',
notation: 'compact',
}).format(hours)
: '') +
(minutes
? ' ' +
new Intl.NumberFormat(lang, {
style: 'unit',
unit: 'minute',
unitDisplay: 'short',
notation: 'compact',
}).format(minutes) +
' '
: '')
);
}
🆘
Если гермес, то https://github.com/facebook/hermes/issues/23
https://formatjs.io/docs/polyfills/intl-numberformat/
Обсуждают сегодня