mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-11 00:18:51 +01: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);
|
||
|
}
|