mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 05:41:46 +03:00
6 lines
128 B
React
6 lines
128 B
React
|
export default function shortenNumber(num) {
|
||
|
return Intl.NumberFormat('en-US', {
|
||
|
notation: 'compact',
|
||
|
}).format(num);
|
||
|
}
|