mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-10 16:08:52 +01:00
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
export default function shortenNumber(num) {
|
|
return Intl.NumberFormat('en-US', {
|
|
notation: 'compact',
|
|
}).format(num);
|
|
}
|