1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 15:28:27 +09:00
whippy-edition/app/javascript/mastodon/utils/numbers.js

11 lines
323 B
JavaScript

import React, { Fragment } from 'react';
import { FormattedNumber } from 'react-intl';
export const shortNumberFormat = number => {
if (number < 1000) {
return <FormattedNumber value={number} />;
} else {
return <Fragment><FormattedNumber value={number / 1000} maximumFractionDigits={1} />K</Fragment>;
}
};