phanpy/src/utils/shorten-number.js
Lim Chee Aun 80d4a45a65 s/jsx/js extension
Somehow vscode refactor "Move to a new file" preserves the jsx extension
2024-09-23 12:43:55 +08:00

12 lines
223 B
JavaScript

import { i18n } from '@lingui/core';
export default function shortenNumber(num) {
try {
return i18n.number(num, {
notation: 'compact',
roundingMode: 'floor',
});
} catch (e) {
return num;
}
}