mirror of
https://github.com/mmahdium/portfolio.git
synced 2025-12-20 09:23:54 +01:00
4 lines
197 B
TypeScript
4 lines
197 B
TypeScript
// round to the first decimal if the number is higher than 1000
|
|
export const getDisplayableNumber = (number: number): string =>
|
|
number >= 1000 ? `${Math.round(number / 100) / 10}k` : `${number}`
|