egirlskey/packages/frontend/src/filters/number.ts
2023-09-19 16:37:43 +09:00

9 lines
236 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { numberFormat } from '@/scripts/intl-const.js';
export default n => n == null ? 'N/A' : numberFormat.format(n);