mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-05 00:57:19 +03:00
5 lines
172 B
JavaScript
5 lines
172 B
JavaScript
const { locale } = Intl.NumberFormat().resolvedOptions();
|
|
const shortenNumber = Intl.NumberFormat(locale, {
|
|
notation: 'compact',
|
|
}).format;
|
|
export default shortenNumber;
|